From 413a2e4f915d390354d862cb5c67460329eb78e7 Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Sun, 24 Sep 2023 20:35:42 -0700 Subject: [PATCH] set `DEBIAN_FRONTEND=noninteractive` correctly --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 72b38470..8e536013 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -155,7 +155,7 @@ install_cuda_driver_apt() { status 'Installing CUDA driver...' $SUDO dpkg -i $TEMP_DIR/cuda-keyring.deb $SUDO apt-get update - DEBIAN_FRONTEND=noninteractive $SUDO apt-get -y install cuda-drivers -q + $SUDO DEBIAN_FRONTEND=noninteractive apt-get -y install cuda-drivers -q } if [ ! -f "/etc/os-release" ]; then