11 lines
202 B
Bash
11 lines
202 B
Bash
|
#!/bin/sh -
|
||
|
|
||
|
set -e
|
||
|
|
||
|
rpmdev-bumpspec -c "- Bump and rebuild." libguestfs.spec
|
||
|
git diff ||:
|
||
|
echo "Press ENTER to commit, push and rebuild."
|
||
|
read line
|
||
|
fedpkg commit -m "Bump and rebuild." -p
|
||
|
fedpkg build
|