diff --git a/Makefile b/Makefile index 551174f6..13a72896 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ $(foreach img,$(image_stacks),$(eval $(call stack,$(img)))) freeze-file: $(STACK)/$(stack_freeze_file) %/$(stack_freeze_file): STACK = $* %/$(stack_freeze_file): - ./build.sh build -v -f \ + ./build.sh build -v \ -r "$(STACK)-builder-base" \ -s "$(STACK)" \ -c "$(PANDOC_COMMIT)" \ diff --git a/build.sh b/build.sh index aabf7c1b..ebb65057 100755 --- a/build.sh +++ b/build.sh @@ -64,7 +64,6 @@ while [ $# -gt 0 ]; do shift ;; (-v) - printf 'shift -v\n' verbosity=$((verbosity + 1)) printf '\tverbosity: %s\n' "${verbosity}" shift @@ -217,9 +216,7 @@ case "$action" in ## build images # The use of $(tag_arguments) is correct here # shellcheck disable=SC2046 - printf 'Run docker build %s\n' "$@" - docker build "$@" \ - "$(tag_arguments)" \ + docker build "$(tag_arguments)" \ --build-arg pandoc_commit="${pandoc_commit}" \ --build-arg pandoc_version="${pandoc_version}" \ --build-arg without_crossref="${without_crossref}" \