From 6aff051794ddfb1a47275f3446250a7fdf76235a Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Mon, 18 Mar 2024 12:14:33 +0300 Subject: [PATCH] fix --- scripts/install_qt.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/install_qt.sh b/scripts/install_qt.sh index dd03470..6505a54 100755 --- a/scripts/install_qt.sh +++ b/scripts/install_qt.sh @@ -5,6 +5,10 @@ source "$HOME/.bashrc" # check is x86 if [[ "$(uname -m)" == "x86_64" ]]; then +apt-get update && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ + p7zip-full \ + && rm -rf /var/lib/apt/lists/* aqt install-qt --outputdir /opt/Qt linux desktop ${QT_VERSION} else apt-get update && \