aur-packages/release.fish

11 lines
185 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
git push