X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=share%2Fgenbuild.sh;h=7eee927b6b8a5c37481ea101fa76e39e78363bbe;hb=37db5ac3c6caf124efef6f8efe3683803a94c7e6;hp=8af3f1f884e728df21c720b9eb5e18c39b93b52b;hpb=14f12399f3bffb937b63c94ed52371c01e786235;p=novacoin.git diff --git a/share/genbuild.sh b/share/genbuild.sh index 8af3f1f..7eee927 100755 --- a/share/genbuild.sh +++ b/share/genbuild.sh @@ -1,7 +1,11 @@ #!/bin/sh +realpath() { + [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}" +} + PREVDIR=$(pwd) -SCRIPT=$(readlink -f $0) +SCRIPT=$(realpath $0) SCRIPTPATH=`dirname $SCRIPT` if [ $# -gt 0 ]; then @@ -21,8 +25,8 @@ if [ -e "$(which git)" ]; then # clean 'dirty' status of touched files that haven't been modified git diff >/dev/null 2>/dev/null - # get a string like "v0.6.0-66-g59887e8-dirty" - DESC="$(git describe --dirty 2>/dev/null)" + # get a string like "v0.6.0-66-g59887e8" + DESC="$(git describe 2>/dev/null)" # get a string like "2012-04-10 16:27:19 +0200" TIME="$(git log -n 1 --format="%ci")"