Skip to content

Commit

Permalink
Pass $DEBIAN_FRONTEND through make get-deps
Browse files Browse the repository at this point in the history
This lets you stop `make get-deps` from demanding your timezone.
  • Loading branch information
adamnovak authored Oct 3, 2024
1 parent 9eaa4a4 commit 015e7ee
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 015e7ee

@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 branch pass-debian-frontend. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17373 seconds

Please sign in to comment.