mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
Remove useless pacman option when install package to host
This commit is contained in:
parent
f9ba5a3cfd
commit
150964b0e9
1 changed files with 1 additions and 2 deletions
|
@ -260,8 +260,7 @@ def setup_dependencies_and_sources(package: Package):
|
||||||
"""
|
"""
|
||||||
if package.mode == 'cross':
|
if package.mode == 'cross':
|
||||||
for p in package.depends:
|
for p in package.depends:
|
||||||
subprocess.run(pacman_cmd + ['-Sw', p],
|
subprocess.run(pacman_cmd + ['-S', p])
|
||||||
stderr=subprocess.DEVNULL)
|
|
||||||
|
|
||||||
result = subprocess.run(makepkg_cmd +
|
result = subprocess.run(makepkg_cmd +
|
||||||
['--nobuild',
|
['--nobuild',
|
||||||
|
|
Loading…
Add table
Reference in a new issue