fix: AUR installation receiving GPG key

This commit is contained in:
Vinicius Moreira
2019-09-20 18:33:53 -03:00
parent 57e17c79d8
commit 0d2770296c
8 changed files with 178 additions and 34 deletions

5
bauh/gems/arch/gpg.py Normal file
View File

@@ -0,0 +1,5 @@
from bauh.commons.system import SystemProcess, new_subprocess
def receive_key(key: str) -> SystemProcess:
return SystemProcess(new_subprocess(['gpg', '--recv-key', key]), check_error_output=False)