mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
Previously the builder scripts defined a readonly `VERSION` environment variable for the Keyman version. That caused problems when another (external) script tried to define a `VERSION` variable. We encountered this problem when trying to move the TC build steps of a configuration into a single script (#13399) when we tried to source `~/.nvm/nvm.sh`. This change uses a Keyman specific prefix for the version variables and renames `VERSION` → `KEYMAN_VERSION` etc. Unfortunately these variables are used in a lot of places, so this turned out to be a bit of a yak shave. Test-bot: skip
55 lines
1.4 KiB
Bash
Executable file
55 lines
1.4 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# compares the version of this branch (in ../VERSION.md) to the
|
|
# version in the Xcode project file of the subproject named in $1
|
|
# returns zero if they are the same, non-zero if not the same or a problem occurs
|
|
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
. "${THIS_SCRIPT%/*}/../resources/build/build-utils.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
#TODO:
|
|
exit 0
|
|
|
|
if [ $# -eq 1 ]
|
|
then
|
|
echo the argument is $1
|
|
ls -l ./$1/$1.xcodeproj/project.pbxproj || exit 1
|
|
else
|
|
echo there must be exactly one argument, e.g. Keyman4MacIM
|
|
exit 1;
|
|
fi
|
|
|
|
# priming PRODUCT_VERSION to -99.9
|
|
PRODUCT_VERSION=-99.9
|
|
|
|
# grepping for PRODUCT_VERSION
|
|
PROJ_PROD_VERSION_LINE=`grep "PRODUCT_VERSION = " ./$1/$1.xcodeproj/project.pbxproj | head -1`
|
|
|
|
# the grepped line is
|
|
# $PROJ_PROD_VERSION_LINE
|
|
|
|
# writing the line to PROJ_VERSION.md with exact spacing
|
|
echo $PROJ_PROD_VERSION_LINE | sed /\ /s///g > ./PROJ_VERSION.md
|
|
|
|
# the exact line is now
|
|
# cat PROJ_VERSION.md
|
|
|
|
# executing the modified line
|
|
. ./PROJ_VERSION.md
|
|
echo Product version in the project file PRODUCT_VERSION is $PRODUCT_VERSION
|
|
|
|
echo Keyman version VERSION is $KEYMAN_VERSION
|
|
|
|
if [ x$KEYMAN_VERSION = x$PRODUCT_VERSION ]
|
|
then
|
|
echo the versions are the same, all is well.
|
|
# clean up
|
|
rm ./PROJ_VERSION.md
|
|
exit 0
|
|
else
|
|
echo the version $KEYMAN_VERSION and $PRODUCT_VERSION are NOT the same!
|
|
exit 1
|
|
fi
|