Commit 895ee3b3 authored by Mike Gabriel's avatar Mike Gabriel

debian/roll-tarball.sh: Support tarring up the HEAD of the current branch.

parent 701471e8
...@@ -52,13 +52,13 @@ else ...@@ -52,13 +52,13 @@ else
fi fi
if [ x"$RELEASE" == "xHEAD" ]; then if [ x"$RELEASE" == "xHEAD" ]; then
CHECKOUT="HEAD" CHECKOUT=refs/heads/$(git rev-parse --abbrev-ref HEAD)
fi fi
if ! git rev-parse --verify -q "$CHECKOUT" >/dev/null; then if ! git rev-parse --verify -q "$CHECKOUT" >/dev/null; then
echo " '${RELEASE}' is not a valid release number because there is no git tag named ${CHECKOUT}." echo " '${RELEASE}' is not a valid release number because there is no git tag named ${CHECKOUT}."
echo " Please specify one of the following releases:" echo " Please specify one of the following releases:"
echo "HEAD" echo "HEAD (on branch `git rev-parse --abbrev-ref HEAD`)"
git tag -l | grep "^redist" | cut -f2 -d"/" | sort -u git tag -l | grep "^redist" | cut -f2 -d"/" | sort -u
exit 1 exit 1
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment