Skip to content

Commit 367c618

Browse files
authored
fix build phases quoting
1 parent 6bf37f4 commit 367c618

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ In Xcode add `Build Phase` (at end of list) with script:
155155

156156
```shell script
157157
"$SRCROOT/../gradlew" -p "$SRCROOT/../" :yourframeworkproject:copyFrameworkResourcesToApp \
158-
-Pmoko.resources.BUILT_PRODUCTS_DIR=$BUILT_PRODUCTS_DIR \
159-
-Pmoko.resources.CONTENTS_FOLDER_PATH=$CONTENTS_FOLDER_PATH\
160-
-Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \
158+
-Pmoko.resources.BUILT_PRODUCTS_DIR="$BUILT_PRODUCTS_DIR" \
159+
-Pmoko.resources.CONTENTS_FOLDER_PATH="$CONTENTS_FOLDER_PATH" \
160+
-Pkotlin.native.cocoapods.platform="$PLATFORM_NAME" \
161161
-Pkotlin.native.cocoapods.archs="$ARCHS" \
162-
-Pkotlin.native.cocoapods.configuration=$CONFIGURATION
162+
-Pkotlin.native.cocoapods.configuration="$CONFIGURATION"
163163
```
164164

165165
#### Without org.jetbrains.kotlin.native.cocoapods
@@ -168,11 +168,11 @@ In Xcode add `Build Phase` (at end of list) with script:
168168

169169
```shell script
170170
"$SRCROOT/../gradlew" -p "$SRCROOT/../" :yourframeworkproject:copyFrameworkResourcesToApp \
171-
-Pmoko.resources.PLATFORM_NAME=$PLATFORM_NAME \
172-
-Pmoko.resources.CONFIGURATION=$CONFIGURATION \
171+
-Pmoko.resources.PLATFORM_NAME="$PLATFORM_NAME" \
172+
-Pmoko.resources.CONFIGURATION="$CONFIGURATION" \
173173
-Pmoko.resources.ARCHS="$ARCHS" \
174-
-Pmoko.resources.BUILT_PRODUCTS_DIR=$BUILT_PRODUCTS_DIR \
175-
-Pmoko.resources.CONTENTS_FOLDER_PATH=$CONTENTS_FOLDER_PATH
174+
-Pmoko.resources.BUILT_PRODUCTS_DIR="$BUILT_PRODUCTS_DIR" \
175+
-Pmoko.resources.CONTENTS_FOLDER_PATH="$CONTENTS_FOLDER_PATH"
176176
```
177177

178178
#### Disable warning about static framework usage

0 commit comments

Comments
 (0)