Skip to content

Commit

Permalink
Fix shell lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminPelletier committed Nov 5, 2023
1 parent 541160d commit ad9212c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monitoring/uss_qualifier/make_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eo pipefail

if [[ $# < 2 ]]; then
if [[ $# -lt 2 ]]; then
echo "Usage: $0 <CONFIG_NAME(s)> <REPORT_NAME(s)>"
echo "Generates artifacts according to the specified configuration(s) using the specified report(s)"
echo "<CONFIG_NAME>: Location of the configuration file."
Expand Down Expand Up @@ -39,7 +39,7 @@ CACHE_DIR="monitoring/uss_qualifier/.templates_cache"
mkdir -p "$CACHE_DIR"

# shellcheck disable=SC2086
docker run ${docker_args} --name uss_qualifier \
docker run --name uss_qualifier \
--rm \
-u "$(id -u):$(id -g)" \
-e PYTHONBUFFERED=1 \
Expand Down

0 comments on commit ad9212c

Please sign in to comment.