From 887731a109172874132e171a89a6d795a9f45392 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Mon, 18 Nov 2024 11:13:49 -0500 Subject: [PATCH] fix: use non-interactive debian frontend in CI --- common.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.mk b/common.mk index abbe100..c7c7f4b 100644 --- a/common.mk +++ b/common.mk @@ -7,6 +7,9 @@ DOCS=docs ifneq ($(OS),Windows_NT) OS := $(shell uname) endif +ifneq ($(CI),) + export DEBIAN_FRONTEND := noninteractive +endif .DEFAULT_GOAL := help