revert changes to 'os_default_platform.go' and 'os_windows.go'

Signed-off-by: Randshot <randshot@norealm.xyz>
This commit is contained in:
Randshot
2020-07-15 09:41:16 +10:00
committed by Jesse Duffield
parent 5dfa26ea8b
commit 964e3872c1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -12,9 +12,9 @@ func getPlatform() *Platform {
catCmd: "cat",
shell: "bash",
shellArg: "-c",
escapedQuote: "'",
openCommand: "open {{filename}}",
openLinkCommand: "open {{link}}",
escapedQuote: `\'`,
fallbackEscapedQuote: `\"`,
fallbackEscapedQuote: "\"",
}
}
+1 -1
View File
@@ -7,6 +7,6 @@ func getPlatform() *Platform {
shell: "cmd",
shellArg: "/c",
escapedQuote: `\"`,
fallbackEscapedQuote: `\'`,
fallbackEscapedQuote: "\\'",
}
}