diff --git a/dist/gitdist.sh b/dist/build-arch-tag similarity index 100% rename from dist/gitdist.sh rename to dist/build-arch-tag diff --git a/dist/builddist.sh b/dist/releasescript similarity index 86% rename from dist/builddist.sh rename to dist/releasescript index 2ab406f..3aff5ef 100755 --- a/dist/builddist.sh +++ b/dist/releasescript @@ -1,5 +1,7 @@ #!/bin/sh +BUILDER=./build-arch-tag + # Check whether the tag exists TAG=$1 if [ "x$TAG" != "x" ] @@ -29,11 +31,11 @@ fi OS=`uname -s` if [ "x$OS" = "xDarwin" ] then - ./gitdist.sh mac $TAG + $BUILDER mac $TAG elif [ "x$OS" = "xLinux" ] then - ./gitdist.sh linux $TAG - ./gitdist.sh w32 $TAG + $BUILDER linux $TAG + $BUILDER w32 $TAG else echo "Don't know architecture $OS, where am I?" exit