Skip to content
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from jeffctown/feature/FixingSpaces
Browse files Browse the repository at this point in the history
Feature/fixing spaces
  • Loading branch information
jeffctown authored Nov 21, 2019
2 parents 15d8d1b + 9273eaf commit df89dc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/XCFrameworkKit/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ import Foundation

public struct Version {
public let value: String
public static let current = Version(value: "0.2.2")
public static let current = Version(value: "0.2.3")
}
2 changes: 1 addition & 1 deletion Sources/XCFrameworkKit/XCFrameworkBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public class XCFrameworkBuilder {
let archivePath = buildPath + "\(scheme)-\(sdk.rawValue).xcarchive"
//array of arguments for the archive of each framework
//weird interpolation errors are forcing me to use this "" + syntax. not sure if this is a compiler bug or not.
var archiveArguments = ["-project", "" + project, "-scheme", "" + scheme, "archive", "SKIP_INSTALL=NO", "BUILD_LIBRARY_FOR_DISTRIBUTION=YES"]
var archiveArguments = ["-project", "\"" + project + "\"", "-scheme", "\"" + scheme + "\"", "archive", "SKIP_INSTALL=NO", "BUILD_LIBRARY_FOR_DISTRIBUTION=YES"]
if let compilerArguments = compilerArguments {
archiveArguments.append(contentsOf: compilerArguments)
}
Expand Down

0 comments on commit df89dc9

Please sign in to comment.