mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
fix version info
This commit is contained in:
parent
4ca35af11a
commit
af1edc0c95
2 changed files with 8 additions and 2 deletions
4
build.sh
4
build.sh
|
@ -78,11 +78,11 @@ fi
|
|||
|
||||
# force version update
|
||||
get_tag
|
||||
echo "var GUI_VERSION = \"$VERSIONTAG\"" > version.js
|
||||
echo "var GUI_VERSION = \"$TAGNAME\"" > version.js
|
||||
pushd "$MONERO_DIR"
|
||||
get_tag
|
||||
popd
|
||||
echo "var GUI_MONERO_VERSION = \"$VERSIONTAG\"" >> version.js
|
||||
echo "var GUI_MONERO_VERSION = \"$TAGNAME\"" >> version.js
|
||||
|
||||
cd build
|
||||
qmake ../monero-wallet-gui.pro "$CONFIG" || exit
|
||||
|
|
6
utils.sh
6
utils.sh
|
@ -53,6 +53,12 @@ function get_tag()
|
|||
echo "You are ahead of or behind a tagged release"
|
||||
VERSIONTAG="$COMMIT"
|
||||
fi
|
||||
# save tag name + commit if availible
|
||||
TAGNAME=$(git describe | sed -e 's/[\t ]*//')
|
||||
if test -z "$TAGNAME"
|
||||
then
|
||||
TAGNAME="$VERSIONTAG"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue