Version command implemented

This commit is contained in:
2023-01-10 14:23:59 -07:00
parent ae7a17cecd
commit d315941f21
3 changed files with 8 additions and 4 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
version_file_name=./app/data/version.txt
echo "# This file should be re-generated running: scripts/update-version-file.sh script" > $version_file_name
echo $( git describe --tags --abbrev=0 ; git rev-parse --short HEAD ) >> $version_file_name
tag_string=$( git describe --tags --abbrev=0 )
commit_string=$( git rev-parse --short HEAD )
version_string=${tag_string}-${commit_string}
echo ${version_string} >> $version_file_name
echo ${version_string}