Skip to content

Commit 4d1a7e0

Browse files
committed
fix: replace use of shell variable inside printf string with specifer.
Minor nit found by hadolint.
1 parent d135610 commit 4d1a7e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ RUN [ -z "${VERBOSE}" ] || set -xv; \
171171
printf "Building with distribution: %s\n" "$dist"; \
172172
pip install --no-cache-dir "install/dist/$dist";; \
173173
*) \
174-
printf "\n\ninvalid value for source: $source\n"; \
174+
printf "\n\ninvalid value for source: %s\n" "$source"; \
175175
printf "must be local, pypi, pip_local or pip_sdist\n\n"; \
176176
exit 1;; \
177177
esac

0 commit comments

Comments
 (0)