From 03da6e9132984e7ae2396604acbba76a86c72be0 Mon Sep 17 00:00:00 2001 From: Juergen Hoetzel Date: Thu, 11 Apr 2019 16:30:00 +0200 Subject: [PATCH] Don't use PKG compression xz can be fairly costly and isn't usefull intermediate packages files. --- aur.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aur.py b/aur.py index 73f300c..a990533 100644 --- a/aur.py +++ b/aur.py @@ -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)