🗝
summary refs log tree commit diff
path: root/packages
diff options
context:
space:
mode:
authormia <mia@mia.jetzt>2024-07-19 16:42:50 -0700
committermia <mia@mia.jetzt>2024-07-19 16:42:50 -0700
commit8886f4e5af15feb05b872b633dbb6bb169b44017 (patch)
tree9d418d65a65e2dcf767806a0cca31d233eab397f /packages
parent8072abd611ce692246ef16509f71966d85683dc5 (diff)
downloadasylum-8886f4e5af15feb05b872b633dbb6bb169b44017.tar.gz
asylum-8886f4e5af15feb05b872b633dbb6bb169b44017.zip
don't check for deps when performing version checks
Diffstat (limited to 'packages')
-rw-r--r--packages/aur.py2
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="):