[improvement][aur] allowing the user to bypass checksum errors when installing / upgrading / downgrading packages

This commit is contained in:
Vinícius Moreira
2020-02-05 12:00:57 -03:00
parent 1b134d62b3
commit 6ed68ab4f3
9 changed files with 30 additions and 17 deletions

View File

@@ -42,7 +42,7 @@ def check(pkgdir: str, optimize: bool, handler: ProcessHandler) -> dict:
def make(pkgdir: str, optimize: bool, handler: ProcessHandler) -> Tuple[bool, str]:
cmd = ['makepkg', '-ALcsmf']
cmd = ['makepkg', '-ALcsmf', '--skipchecksums']
if optimize:
if os.path.exists(CUSTOM_MAKEPKG_FILE):