[fix][aur] Removing repeated 'prepare' step that was delaying the build and preventing some packages to install

This commit is contained in:
Vinicius Moreira
2019-11-26 17:31:44 -03:00
parent 67e7d49abe
commit bed3db69e6
2 changed files with 3 additions and 1 deletions

View File

@@ -435,7 +435,7 @@ class ArchManager(SoftwareManager):
# building main package
handler.watcher.change_substatus(self.i18n['arch.building.package'].format(bold(pkgname)))
pkgbuilt, output = handler.handle_simple(SimpleProcess(['makepkg', '-ALcsmf'], cwd=project_dir))
pkgbuilt, output = handler.handle_simple(SimpleProcess(['makepkg', '-ALcsmf', '--noprepare'], cwd=project_dir))
self._update_progress(handler.watcher, 65, change_progress)
if pkgbuilt: