[bin] make bump_misc usable on different systems

(don't require a script in a fixed location for sourcing)
This commit is contained in:
Sławomir Nizio
2015-04-01 21:01:04 +02:00
parent 3d05ce061a
commit d065a3e2ec
+5 -1
View File
@@ -3,7 +3,11 @@
# script that makes it easier to bump split packages
# (and perhaps other fun stuff)
. /sabayon/bin/buildrc || exit 2
if [ -e /sabayon/bin/buildrc ]; then
. /sabayon/bin/buildrc || exit 2
else
echo "Warning: buildrc not found" >&2
fi
list="git [sub]version [tra]nsmission [qua]ssel"
cmd="emerge -av"