summarylogtreecommitdiffstats
path: root/prepare4uploadpkg.sh
blob: 1e00c9a35b71ad44978c0c769dd1f51aef1bd23c (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

namcap PKGBUILD && makepkg --printsrcinfo > .SRCINFO || exit 1
git add . || exit 1 # PKGBUILD prepare4uploadpkg.sh .SRCINFO
git commit -am "New package commit" || exit 1
git push --set-upstream origin master || exit 1

read -p "Press [Enter] key to exit..."

exit $?