summaryrefslogtreecommitdiffstats
path: root/src/util/util_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/util_unix.go')
-rw-r--r--src/util/util_unix.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util/util_unix.go b/src/util/util_unix.go
index dcc5cb5e..29e0d30d 100644
--- a/src/util/util_unix.go
+++ b/src/util/util_unix.go
@@ -15,3 +15,8 @@ func ExecCommand(command string) *exec.Cmd {
}
return exec.Command(shell, "-c", command)
}
+
+// IsWindows returns true on Windows
+func IsWindows() bool {
+ return false
+}