lib/upm/tools/pacman.rb in upm-0.1.15 vs lib/upm/tools/pacman.rb in upm-0.1.16

- old
+ new

@@ -4,10 +4,10 @@ bin = ["pacman", "--color=always"] command "install", [*bin, "-S"], root: true command "update", [*bin, "-Sy"], root: true - command "upgrade", [*bin, "-Syu"], root: true + command "upgrade", [*bin, "-Syu", "--noconfirm"], root: true command "remove", [*bin, "-R"], root: true command "verify", root: true do |args| require 'upm/pacman_verifier' UPM::PacmanVerifier.new.verify!(*args)