diff options
Diffstat (limited to 'packages/aur.py')
-rw-r--r-- | packages/aur.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/aur.py b/packages/aur.py index 85658e1..4fdbcfc 100644 --- a/packages/aur.py +++ b/packages/aur.py @@ -93,7 +93,7 @@ for name, current in packages.items(): print() if not check_continue(): continue - run_check(["git", "checkout", origin], cwd=path) + run_check(["git", "checkout", "--force", origin], cwd=path) # check for new version run_check(["makepkg", "--noprepare", "--nobuild"], cwd=path) ver = None |