Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #193 from JohnStrunk/sc
Browse files Browse the repository at this point in the history
Fix shellcheck errors
  • Loading branch information
mergify[bot] committed Jun 2, 2021
2 parents 06de3e9 + e3a1801 commit b38382e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci-scripts/pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function run_check() {
}

all_required=0
if [ "x$1" == "x--require-all" ]; then
if [ "$1" == "--require-all" ]; then
all_required=1
fi

Expand Down
2 changes: 1 addition & 1 deletion docs/setup-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ VENV_NAME="$SCRIPT_DIR/../.venv"

python3 -m venv "$VENV_NAME"

# shellcheck disable=SC1090
# shellcheck disable=SC1090,SC1091
source "$VENV_NAME/bin/activate"

pip install --upgrade pip
Expand Down

0 comments on commit b38382e

Please sign in to comment.