Skip to content

Commit

Permalink
ci: use bash instead of sh
Browse files Browse the repository at this point in the history
The action "Sync Submodules and Dependencies" on finch failed with the
message "set: Illegal option -o pipefail". Also, there was an error
interpreting `[[` in the update-deps.sh script as `[[` is bash syntax,
but the shebang is set as sh

Use bash instead of sh

https://github.com/runfinch/finch/actions/runs/5760444005/job/15616416221

Signed-off-by: Gavin Inglis <[email protected]>
  • Loading branch information
ginglis13 committed Aug 4, 2023
1 parent 0741eeb commit db64eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/update-deps.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

DEPENDENCY_CLOUDFRONT_URL="https://deps.runfinch.com/"
AARCH64_FILENAME_PATTERN="aarch64/lima-and-qemu.macos-aarch64.[0-9].*\.gz$"
Expand Down
2 changes: 1 addition & 1 deletion bin/update-rootfs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -euxo pipefail

DEPENDENCY_CLOUDFRONT_URL="https://deps.runfinch.com/"
Expand Down

0 comments on commit db64eb7

Please sign in to comment.