diff --git a/base/system_info.py b/base/system_info.py index 2a0b3e2..4e3f728 100644 --- a/base/system_info.py +++ b/base/system_info.py @@ -133,7 +133,7 @@ class WindowsMingwPlatform(Platform): Platform.__init__(self, 'windows', arch, package_types) def install_package(self, name): - subprocess.call(['pacman', '-SYq', name]) + subprocess.call(['pacman', '-S', '--noconfirm', name]) class WindowsPlatforms(SupportedPlatforms):