Skip to content

Commit

Permalink
build: fixed git hash in makedist script
Browse files Browse the repository at this point in the history
  • Loading branch information
rhornig committed Jun 17, 2016
1 parent 2c051a8 commit bb8393f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _scripts/makedist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo "INET Version: $VERSION"
if [ "$BUILDID" = "" ]; then
# generate our own build identifier
export BUILDDATE=`date +%Y%m%d`
export BUILDHASH=`git describe --tags | awk -F '-g' '{print $2;}'`
export BUILDHASH=`git describe --tags --long | awk -F '-g' '{print $2;}'`
export BUILDID="$VERSION-$BUILDHASH"
fi

Expand Down

0 comments on commit bb8393f

Please sign in to comment.