From b1f342af37a8b4e12dbbdfafb5f12fcb59c25cac Mon Sep 17 00:00:00 2001 From: Hritik Vijay Date: Mon, 27 Nov 2017 13:25:17 +0530 Subject: [PATCH] Removed -y flag. Arch does not support Partial updates. --- lib/installer/managers/pacman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/installer/managers/pacman.sh b/lib/installer/managers/pacman.sh index ea176e3..348a4a3 100755 --- a/lib/installer/managers/pacman.sh +++ b/lib/installer/managers/pacman.sh @@ -2,7 +2,7 @@ if [ -f "/etc/arch-release" ]; then PackageManagerCLT="pacman" - PackageManagerCLTInstallOptions="-S -y" + PackageManagerCLTInstallOptions="-S" PackageManagerCLTRemoveOptions="-Rs" PackageManagerOutputDevice="/dev/stdout"