aur-packages/release.fish

12 lines
257 B
Fish
Raw Normal View History

2023-06-16 12:54:36 -05:00
#!/usr/bin/env fish
git add -A
git status
read -s --prompt "echo 'Continue committing and pushing? [y/N] '" yn
if ! test $yn = "y"
echo "Cancelling..."
exit 1
end
git commit
2023-06-16 12:57:21 -05:00
git push
echo "You will need to cd to each package and commit and push as well."