1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-03-09 23:38:55 +00:00

Sources UP

This commit is contained in:
topilski 2017-05-18 21:14:07 +03:00
parent 79f2ecb922
commit efe7ab047b

View file

@ -133,7 +133,7 @@ class WindowsMingwPlatform(Platform):
Platform.__init__(self, 'windows', arch, package_types) Platform.__init__(self, 'windows', arch, package_types)
def install_package(self, name): def install_package(self, name):
subprocess.call(['pacman', '-SYq', name]) subprocess.call(['pacman', '-S', '--noconfirm', name])
class WindowsPlatforms(SupportedPlatforms): class WindowsPlatforms(SupportedPlatforms):