Enhance install script by adding libgtk3-perl to dependencies for software-properties-gtk

This commit is contained in:
Anduin Xue 2025-05-17 03:33:01 +00:00
parent 43af74e019
commit 8def16532a
No known key found for this signature in database
GPG Key ID: D33FA9407A6BE728
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,11 @@ set -o pipefail # exit on pipeline error
set -u # treat unset variable as error
print_ok "Downloading software-properties-gtk..."
apt install -y python3-dateutil gir1.2-handy-1 --no-install-recommends
apt install -y \
python3-dateutil \
gir1.2-handy-1 \
libgtk3-perl \
--no-install-recommends
judge "Install python3-dateutil"
apt-get download "software-properties-gtk"