Skip to content

Commit

Permalink
Drop DEBIAN_FRONTEND=noninteractive prefix as it shows nothing at mor…
Browse files Browse the repository at this point in the history
…e recent apt app
  • Loading branch information
igorpecovnik committed Oct 8, 2024
1 parent 3e45c61 commit 76e4099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/armbian-configng/config.ng.system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ module_options+=(
function apt_install_wrapper() {

if [ -t 0 ]; then
DEBIAN_FRONTEND=noninteractive debconf-apt-progress -- "$@"
debconf-apt-progress -- "$@"
else
# Terminal not defined - proceed without TUI
DEBIAN_FRONTEND=noninteractive "$@"
"$@"
fi
}

Expand Down

0 comments on commit 76e4099

Please sign in to comment.