diff --git a/scripts/install.sh b/scripts/install.sh index 9ab4121..2bdcfc3 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -24,9 +24,9 @@ installPkg() { fi case $1 in - pacman) $rootCmd pacman -U ${@:2} ;; + pacman) $rootCmd pacman --noconfirm -U ${@:2} ;; apk) $rootCmd apk add --allow-untrusted ${@:2} ;; - *) $rootCmd $1 install ${@:2} ;; + *) $rootCmd $1 install -y ${@:2} ;; esac }