Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
fix up bash
Browse files Browse the repository at this point in the history
  • Loading branch information
cglewis committed Nov 12, 2021
1 parent 4a19db0 commit c2445b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
tar --xz -xvf "shellcheck-stable.linux.x86_64.tar.xz" && \
shellcheck() { "shellcheck-stable/shellcheck" "$@"; } && \
shellcheck --version && \
/bin/bash --version && /bin/bash -n bin/fakefinder && shellcheck -x -e SC2016 -e SC2119 -e SC2129 -e SC2001 -e SC2038 -e SC2044 bin/fakefinder
/bin/bash --version && /bin/bash -n bin/fakefinder && shellcheck -x -e SC2016 -e SC2119 -e SC2129 -e SC2001 -e SC2038 -e SC2044 -e SC2206 bin/fakefinder
- name: unit_test
run: |
export DEBIAN_FRONTEND=noninteractive && \
Expand Down
2 changes: 1 addition & 1 deletion bin/fakefinder
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function check_args()
;;
-w|weights)
mkdir -p weights
cd weights
cd weights || exit
wget -O boken.tar.gz https://github.com/IQTLabs/FakeFinder/releases/download/weights/boken.tar.gz
tar -xvzf boken.tar.gz
rm boken.tar.gz
Expand Down

0 comments on commit c2445b4

Please sign in to comment.