Fix script path detection on macOS
[novacoin.git] / share / genbuild.sh
index 8af3f1f..7eee927 100755 (executable)
@@ -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")"