mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
Fix unbound variable err then BUILD_ONLY env var not set
This commit is contained in:
@@ -81,7 +81,7 @@ cd $BUILD_DIR
|
||||
$QT_CMAKE -S $PROJECT_DIR -B $BUILD_DIR
|
||||
cmake --build . --config release --target all
|
||||
|
||||
if [ "$BUILD_ONLY" = "True" ] || [ "$BUILD_ONLY" = "true" ]; then
|
||||
if [ "${BUILD_ONLY:-}" = "True" ] || [ "${BUILD_ONLY:-}" = "true" ]; then
|
||||
echo Succesfull build $APP_NAME, path to binary: $BUNDLE_DIR
|
||||
exit 0
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user