Commit 346214843c519dceff0cb9e0a505778402190170

Authored by Antoine Goutenoir
1 parent 9621b8a5
Exists in master

Update the version bumper shell.

Showing 2 changed files with 3 additions and 2 deletions   Show diff stats
VERSION
1   -0.1.0
2 1 \ No newline at end of file
  2 +0.1.0-1-g9621b8a
... ...
bin/bump.sh
... ... @@ -19,6 +19,7 @@ White='\033[0;37m' # White
19 19  
20 20 # BUSINESS ####################################################################
21 21  
  22 +MY_DIR="${0%/*}"
22 23 VERSION=`git describe --tags`
23 24 echo -e "${Green}Setting new version : ${Yellow}${VERSION}${Off}"
24   -echo ${VERSION} > VERSION
  25 +echo ${VERSION} > ${MY_DIR}/../VERSION
... ...