Skip to content

Commit 349f14d

Browse files
committed
Fix generate-xcode-support subcommand
1 parent c987de8 commit 349f14d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/swift-bundler/Subcommands/GenerateXcodeSupport.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ extension Bundler {
4343
}
4444

4545
let runPrebuild = "swift bundler prebuild -d ${WORKSPACE_PATH}/../../../"
46-
let createBundle = "swift bundler bundle -d ${WORKSPACE_PATH}/../../../ --products-dir ${BUILT_PRODUCTS_DIR} -o \(buildOutputDir.escapedPath.replacingOccurrences(of: " ", with: "\\ ")) --dont-fix-bundles"
46+
let createBundle = "swift bundler bundle -d ${WORKSPACE_PATH}/../../../ --products-dir ${BUILT_PRODUCTS_DIR} -o \(buildOutputDir.escapedPath) --dont-fix-bundles"
4747
let runPostbuild = "swift bundler postbuild -d ${WORKSPACE_PATH}/../../../"
4848
return """
4949
<?xml version="1.0" encoding="UTF-8"?>
@@ -142,7 +142,7 @@ extension Bundler {
142142
allowLocationSimulation = "YES">
143143
<PathRunnable
144144
runnableDebuggingMode = "0"
145-
FilePath = "\(builtApp.escapedPath)">
145+
FilePath = "\(builtApp.path)">
146146
</PathRunnable>
147147
<MacroExpansion>
148148
<BuildableReference

0 commit comments

Comments
 (0)