diff options
-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 b52ab29..cd65749 100644 --- a/packages/aur.py +++ b/packages/aur.py @@ -108,7 +108,7 @@ for name, current in packages.items(): continue run_check(["git", "checkout", "--force", origin], cwd=path) # check for new version - run_check(["makepkg", "--noprepare", "--nobuild"], cwd=path) + run_check(["makepkg", "--nodeps", "--noprepare", "--nobuild"], cwd=path) ver = None for line in Path(f"packages/{name}/PKGBUILD").read_text().splitlines(): if not line.startswith("pkgver="): |