Skip to content

Commit

Permalink
Use bash rather than sh
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles committed Dec 6, 2023
1 parent 01c239d commit 0992efb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/download-all-canister-wasms.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

SCRIPT=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "$SCRIPT")
Expand Down
4 changes: 2 additions & 2 deletions scripts/download-canister-wasm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

SCRIPT=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "$SCRIPT")
Expand Down Expand Up @@ -53,4 +53,4 @@ if [[ ${HTTP_CODE} -ne 200 ]] ; then
exit 1
fi

echo "Wasm downloaded"
echo "Wasm downloaded"
4 changes: 2 additions & 2 deletions scripts/download-nns-canister-wasm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

SCRIPT=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "$SCRIPT")
Expand All @@ -21,4 +21,4 @@ if [[ ${HTTP_CODE} -ne 200 ]] ; then
exit 1
fi

echo "$CANISTER_NAME wasm downloaded"
echo "$CANISTER_NAME wasm downloaded"
2 changes: 1 addition & 1 deletion scripts/generate-all-canister-wasms.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

SCRIPT=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "$SCRIPT")
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-wasm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

SCRIPT=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "$SCRIPT")
Expand Down

0 comments on commit 0992efb

Please sign in to comment.