Skip to content

Commit

Permalink
chore: enable aur publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Sep 27, 2024
1 parent a74dd5d commit 0049e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/bump-aur
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env
USAGE_VERSION=v$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[] | select(.name == "usage-cli") | .version')

if [ ! -d aur ]; then
git clone ssh://aur@aur.archlinux.org/usage.git aur
git clone ssh://aur@aur.archlinux.org/$usage_pkgname.git aur
fi
git -C aur pull

Expand Down Expand Up @@ -122,6 +122,6 @@ if git diff-index --quiet HEAD --; then
fi
git diff --cached
git commit -m "usage ${USAGE_VERSION#v}"
if [ "$DRY_RUN" == 0 ]; then
if [ "$DRY_RUN" == false ]; then
git push
fi

0 comments on commit 0049e95

Please sign in to comment.