Skip to content

Commit

Permalink
Merge pull request #4413 from vgteam/pass-debian-frontend
Browse files Browse the repository at this point in the history
Pass $DEBIAN_FRONTEND through make get-deps
  • Loading branch information
adamnovak authored Oct 28, 2024
2 parents 9eaa4a4 + 015e7ee commit 0b408b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ static-docker: static scripts/*
# We have system-level deps to install
# We want the One True Place for them to be in the Dockerfile.
get-deps:
sudo apt-get install -qq -y --no-upgrade $(shell cat Dockerfile | sed -n '/^###DEPS_BEGIN###/,$${p;/^###DEPS_END###/q}' | grep -v '^ *#' | grep -v "^RUN" | tr '\n' ' ' | tr -d '\\')
sudo DEBIAN_FRONTEND=$(DEBIAN_FRONTEND) apt-get install -qq -y --no-upgrade $(shell cat Dockerfile | sed -n '/^###DEPS_BEGIN###/,$${p;/^###DEPS_END###/q}' | grep -v '^ *#' | grep -v "^RUN" | tr '\n' ' ' | tr -d '\\')

# And we have submodule deps to build
deps: $(DEPS)
Expand Down

1 comment on commit 0b408b3

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for merge to master. View the full report here.

15 tests passed, 0 tests failed and 0 tests skipped in 13953 seconds

Please sign in to comment.