diff --git a/.gitignore b/.gitignore index 1588700..c267f1a 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ aur/*/*.tar.gz aur/*/*.tar.xz aur/*/*.pkg.tar.* # Keep PKGBUILD and .SRCINFO tracked +.SRCINFO diff --git a/justfile b/justfile index 7796ba1..3dea9f9 100644 --- a/justfile +++ b/justfile @@ -407,10 +407,8 @@ aur-update-all: echo "=== Updating meta-packages ===" for pkg in owlry-essentials owlry-tools owlry-widgets owlry-full; do echo "--- $pkg ---" - cd "aur/$pkg" - # Meta-packages just need version bump and .SRCINFO regen - makepkg --printsrcinfo > .SRCINFO - cd ../.. + # Use subshell to avoid cd issues + (cd "aur/$pkg" && makepkg --printsrcinfo > .SRCINFO) done echo "" echo "All AUR packages updated. Run 'just aur-publish-all' to publish."