-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use /bin/sh instead of /bin/bash for shell
Running docker/build-push-action@v3 failed, as Alpine Linux does not have /bin/bash, only /bin/sh, see: https://github.com/aloisklink/mermaid-cli/runs/6854319356 This also changes the BASH only [[ "$OUTPUT" == "$EXPECTED_OUTPUT" ]] in `run-tests.sh` into `[ "$OUTPUT" = "$EXPECTED_OUTPUT" ]`, which should work in all POSIX shells.
- Loading branch information
1 parent
acc8083
commit 004d850
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/bin/sh | ||
cp ./node_modules/mermaid/dist/mermaid.min.js . | ||
|
||
mkdir -p fontawesome/css/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters