mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +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
|
$QT_CMAKE -S $PROJECT_DIR -B $BUILD_DIR
|
||||||
cmake --build . --config release --target all
|
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
|
echo Succesfull build $APP_NAME, path to binary: $BUNDLE_DIR
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user