Skip to content

Commit

Permalink
fix: shellcheck report
Browse files Browse the repository at this point in the history
```
In ./test.sh line 99:
  $RUN "${PIP_INST[@]}" bandit[baseline]
                              ^--------^ SC2102: Ranges can only
 match single chars (mentioned due to duplicates).
```

Signed-off-by: Martin Basti <[email protected]>
  • Loading branch information
MartinBasti committed Jul 17, 2024
1 parent 5a1396b commit 30a8194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ case ${ACTION} in
;;
"bandit")
setup_osbs
$RUN "${PIP_INST[@]}" bandit[baseline]
$RUN "${PIP_INST[@]}" 'bandit[baseline]'
TEST_CMD="bandit-baseline -r atomic_reactor -ll -ii"
;;
*)
Expand Down

0 comments on commit 30a8194

Please sign in to comment.