From 651bd7d1e061d8483cf6ad44740fc3ed475633eb Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Tue, 15 May 2018 19:49:30 +0700 Subject: [PATCH] Fix wrong script in MPP doc --- MULTIPLATFORM.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MULTIPLATFORM.md b/MULTIPLATFORM.md index e4da63a2205..afdef29753b 100644 --- a/MULTIPLATFORM.md +++ b/MULTIPLATFORM.md @@ -326,9 +326,9 @@ default phases except `Target Dependencies`. 6. Add a new `Run Script` build phase and put the following code into the script field: ``` - "$SRCROOT/../gradlew" -p "$SRCROOT" "$KONAN_TASK" \ - -Pkonan.configuration.build.dir="$CONFIGURATION_BUILD_DIR" \ - -Pkonan.debugging.symbols="$DEBUGGING_SYMBOLS" \ + "$SRCROOT/../gradlew" -p "$SRCROOT/../greeting/ios" "$KONAN_TASK" \ + -Pkonan.configuration.build.dir="$CONFIGURATION_BUILD_DIR" \ + -Pkonan.debugging.symbols="$DEBUGGING_SYMBOLS" \ -Pkonan.optimizations.enable="$KONAN_ENABLE_OPTIMIZATIONS" ```