Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add comment #606

Merged
4 changes: 2 additions & 2 deletions framework/test/get_klocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ if [ -z "$1" ] ; then
bids=( 1 2 3 4 5 )
else
# Generate tests for supplied project list
# shellcheck disable=SC2206
# shellcheck disable=SC2206 # $1 is a list.
projects=( $1 )
if [ -z "$2" ] ; then
# Generate tests for all bids
bids=( 1 2 3 4 5 )
else
# Generate tests for supplied bid list
# shellcheck disable=SC2206
# shellcheck disable=SC2206 # #2 is a list
bids=( $2 )
fi
fi
Expand Down