summaryrefslogtreecommitdiff
path: root/src/proxy.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/proxy.go')
-rw-r--r--src/proxy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proxy.go b/src/proxy.go
index bbac0292..a1e8f805 100644
--- a/src/proxy.go
+++ b/src/proxy.go
@@ -98,7 +98,7 @@ func runProxy(commandPrefix string, cmdBuilder func(temp string) *exec.Cmd, opts
exports[idx] = fmt.Sprintf("export %s=%s", pair[0], escapeSingleQuote(pair[1]))
}
}
- temp := writeTemporaryFile(append(exports, command), "\n")
+ temp := WriteTemporaryFile(append(exports, command), "\n")
defer os.Remove(temp)
cmd := cmdBuilder(temp)