summaryrefslogtreecommitdiffstats
path: root/pkg/commands/oscommands
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-09-29 20:38:31 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-09-29 20:48:49 +1000
commitca105692cf4541457cb6fea14abdd5c686d4ee5f (patch)
tree2eb507581925bc2f07630099e7bafeb0a7926d27 /pkg/commands/oscommands
parentce6f8ed1bcf85204aadb14d583c5f01f96ac4e49 (diff)
fix windows build
Diffstat (limited to 'pkg/commands/oscommands')
-rw-r--r--pkg/commands/oscommands/os_windows.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/commands/oscommands/os_windows.go b/pkg/commands/oscommands/os_windows.go
index e41dc9975..7cbe5bc47 100644
--- a/pkg/commands/oscommands/os_windows.go
+++ b/pkg/commands/oscommands/os_windows.go
@@ -2,11 +2,11 @@ package oscommands
func getPlatform() *Platform {
return &Platform{
- os: "windows",
- catCmd: "type",
- shell: "cmd",
- shellArg: "/c",
- escapedQuote: `\"`,
+ OS: "windows",
+ CatCmd: "type",
+ Shell: "cmd",
+ ShellArg: "/c",
+ EscapedQuote: `\"`,
FallbackEscapedQuote: "\\'",
}
}