Updated the example version string in update_version_string.sh

This commit is contained in:
Leon Styhre 2024-04-17 17:32:49 +02:00
parent 0fdf83763d
commit 248a64ac87

View file

@ -10,7 +10,7 @@
# The script has to be run from within the tools directory. # The script has to be run from within the tools directory.
# #
# Example use: # Example use:
# ./update_version_string.sh 2 1 0 beta # ./update_version_string.sh 3 0 2 beta
# #
# The following files are updated by this script: # The following files are updated by this script:
# es-app/CMakeLists.txt # es-app/CMakeLists.txt
@ -29,7 +29,7 @@ fi
if [ $# -ne 3 ] && [ $# -ne 4 ]; then if [ $# -ne 3 ] && [ $# -ne 4 ]; then
echo "Usage: ./update_version_string.sh <major version> <minor version> <patch version> [<suffix>]" echo "Usage: ./update_version_string.sh <major version> <minor version> <patch version> [<suffix>]"
echo "For example:" echo "For example:"
echo "./update_version_string.sh 2 0 0 beta" echo "./update_version_string.sh 3 0 2 beta"
exit exit
fi fi