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

makepkg --nobuild --skipinteg

rm -rf pkg/ src/ conky*

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

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

exit $?