blob: d7b9b56948e9395adf99ee4afa9a695d80fc6d6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -x
makepkg -i
makepkg --printsrcinfo > .SRCINFO
git add .
git commit -m "Rebuild to get latest version"
set +x
echo "Now install and smoke test the package, review the commit, and push"
|