aur-packages/release.fish

12 lines
257 B
Fish
Executable file

#!/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
git push
echo "You will need to cd to each package and commit and push as well."