We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae551c4 commit b85e35eCopy full SHA for b85e35e
build.sh
@@ -127,8 +127,6 @@ build() {
127
$PATH_TO_UNITY -quit -batchmode -projectPath "$PATH_TO_PROJECT" -exportPackage \
128
"Assets/LeanplumSample" "Assets/Standard Assets/Leanplum" "Assets/Plugins" "$OUT_PKG"
129
130
- export UNITY_BINARY="$PATH_TO_PROJECT/$OUT_PKG"
131
-
132
echo "Done"
133
}
134
@@ -146,7 +144,8 @@ main() {
146
144
if [[ -z "${BUILD_NUMBER+x}" ]]; then
147
145
BUILD_NUMBER=$(date "+%s")
148
fi
149
- export UNITY_VERSION_STRING="$UNITY_VERSION+$BUILD_NUMBER"
+ default="$UNITY_VERSION+$BUILD_NUMBER"
+ export UNITY_VERSION_STRING=${UNITY_VERSION_STRING:-$default}
150
151
for i in "$@"; do
152
case $i in
0 commit comments