Skip to content

Commit

Permalink
~ characters need to be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
g-Off committed Jun 6, 2019
1 parent 6d687a9 commit 9a1e1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/XcodeProject/Archiving/PListArchivable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ extension String: PListArchivable {
var quotedString: String {
var string = self

let characterSet = CharacterSet(charactersIn: "+-<>@$()=,:").union(CharacterSet.whitespacesAndNewlines)
let characterSet = CharacterSet(charactersIn: "+-<>@$()=,:~").union(CharacterSet.whitespacesAndNewlines)

var requiresQuotes = string.isEmpty
if !requiresQuotes {
Expand Down

0 comments on commit 9a1e1d1

Please sign in to comment.