Don't use PKG compression

xz can be fairly costly and isn't usefull intermediate packages
files.
pull/24/head
Juergen Hoetzel 2019-04-11 16:30:00 +02:00
parent 8f8af5fa5f
commit 03da6e9132
No known key found for this signature in database
GPG Key ID: A3D9562A589874AB
1 changed files with 1 additions and 1 deletions

2
aur.py
View File

@ -144,7 +144,7 @@ def install_with_makepkg(module, package):
os.chdir(format(result['Name']))
if module.params['skip_pgp_check']:
use_cmd['makepkg'].append('--skippgpcheck')
rc, out, err = module.run_command(use_cmd['makepkg'], check_rc=True)
rc, out, err = module.run_command(use_cmd['makepkg'], environ_update={'PKGEXT': 'pkg.tar'}, check_rc=True)
os.chdir(current_path)
return (rc, out, err)