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

Remove shellcheck warning #605

Merged
3 changes: 1 addition & 2 deletions framework/test/test_mutation_cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ while getopts ":p:b:" opt; do
p) PID="$OPTARG"
;;
b) if [[ "$OPTARG" =~ ^[0-9]*\.\.[0-9]*$ ]]; then
# shellcheck disable=SC1083,2086
BUGS="$BUGS $(eval echo {$OPTARG})"
BUGS="$BUGS $(eval "echo {$OPTARG}")"
else
BUGS="$BUGS $OPTARG"
fi
Expand Down