Skip to content

Commit

Permalink
Switch to using env bash (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
tovbinm committed Nov 3, 2022
1 parent f6f4047 commit 969cef6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ docker pull farosai/faros-events-cli:v0.6.4 && docker run farosai/faros-events-c
Either [download the script manually](https://raw.githubusercontent.com/faros-ai/faros-events-cli/v0.6.4/faros_event.sh) or invoke the script directly with curl:

```sh
curl -s https://raw.githubusercontent.com/faros-ai/faros-events-cli/v0.6.4/faros_event.sh | bash -s help
bash <(curl -s https://raw.githubusercontent.com/faros-ai/faros-events-cli/v0.6.4/faros_event.sh) help
```

## Instrumenting CI/CD pipelines
Expand Down
2 changes: 1 addition & 1 deletion faros_event.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# This is used for testing purposes. It is a noop unless under testing with shellspec
# See https://github.com/shellspec/shellspec#intercepting for details.
Expand Down
2 changes: 1 addition & 1 deletion test/demo.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# To run this script:
# 1) Allow this script to be executed by running the following:
Expand Down

0 comments on commit 969cef6

Please sign in to comment.