This time, run the git fetch tags and genversion in the pre xcodebuild script. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
9 lines
132 B
Bash
Executable file
9 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
git=$(which git)
|
|
|
|
"$git" -C "${BASEDIR}/.." fetch --tags
|
|
|
|
"${BASEDIR}/../Scripts/genversion.sh"
|