Skip to content

Commit

Permalink
Fix Xcode support generation
Browse files Browse the repository at this point in the history
  • Loading branch information
stackotter committed Dec 15, 2021
1 parent e71f538 commit 8719811
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/swift-bundler/Subcommands/GenerateXcodeSupport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ extension Bundler {
terminate("Failed to locate and create built app directory; \(error)")
}

let runPrebuild = "swift bundler prebuild -d ${WORKSPACE_PATH}/../../../"
let createBundle = "swift bundler bundle -d ${WORKSPACE_PATH}/../../../ --products-dir ${BUILT_PRODUCTS_DIR} -o \(buildOutputDir.escapedPath) --dont-fix-bundles"
let runPostbuild = "swift bundler postbuild -d ${WORKSPACE_PATH}/../../../"
let runPrebuild = "/opt/swift-bundler/swift-bundler prebuild -d ${WORKSPACE_PATH}/../../../"
let createBundle = "/opt/swift-bundler/swift-bundler bundle -d ${WORKSPACE_PATH}/../../../ --products-dir ${BUILT_PRODUCTS_DIR} -o \(buildOutputDir.escapedPath) --dont-fix-bundles"
let runPostbuild = "/opt/swift-bundler/swift-bundler postbuild -d ${WORKSPACE_PATH}/../../../"
return """
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
Expand Down

0 comments on commit 8719811

Please sign in to comment.