Skip to content

Commit

Permalink
run shellcheck without generic_checker
Browse files Browse the repository at this point in the history
Signed-off-by: D Tripp <38776199+thedtripp@users.noreply.github.com>
  • Loading branch information
thedtripp committed Jun 26, 2024
1 parent a08a1ff commit bfd9078
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,16 @@ function shellcheck_pass {
SHELLCHECK=./bin/shellcheck
fi

echo "Running shellcheck with $SHELLCHECK"
#echo "Running shellcheck with $SHELLCHECK"
#generic_checker run ${SHELLCHECK} -fgcc build test scripts/*.sh ./*.sh
run ${SHELLCHECK} --version
#run ${SHELLCHECK} --version

echo "Running shellcheck --version with $SHELLCHECK --version"
${SHELLCHECK} --version

echo "Running shellcheck on scripts"
${SHELLCHECK} -fgcc build test scripts/*.sh ./*.sh 2>&1 | while read -r line; do echo -e "${COLOR_NONE}stderr: ${COLOR_MAGENTA}${line}${COLOR_NONE}"; done
}
}

function shellws_pass {
Expand Down

0 comments on commit bfd9078

Please sign in to comment.