Skip to content

Commit

Permalink
fix: replace use of shell variable inside printf string with specifer.
Browse files Browse the repository at this point in the history
Minor nit found by hadolint.
  • Loading branch information
rouilj committed Jul 20, 2024
1 parent d135610 commit 4d1a7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ RUN [ -z "${VERBOSE}" ] || set -xv; \
printf "Building with distribution: %s\n" "$dist"; \
pip install --no-cache-dir "install/dist/$dist";; \
*) \
printf "\n\ninvalid value for source: $source\n"; \
printf "\n\ninvalid value for source: %s\n" "$source"; \
printf "must be local, pypi, pip_local or pip_sdist\n\n"; \
exit 1;; \
esac
Expand Down

0 comments on commit 4d1a7e0

Please sign in to comment.