Skip to content

Commit

Permalink
Use /bin/bash when generating README
Browse files Browse the repository at this point in the history
set -o pipefail is a bashism that not all shells support. Notably, this
fails with the default /bin/sh on GitHub Actions Linux runners
  • Loading branch information
zoni committed Sep 26, 2023
1 parent 5985ad7 commit 4c74371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/generate.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -euo pipefail

Expand Down

0 comments on commit 4c74371

Please sign in to comment.