diff options
author | Teddy Wing | 2020-12-20 15:32:44 +0100 |
---|---|---|
committer | Teddy Wing | 2020-12-20 15:32:44 +0100 |
commit | 832026cddb55d341a025427b3d5edf770a2d71ec (patch) | |
tree | 9f9029393bbc7ed624f01ead397f50f9eed5d63f /browserenv_windows.go | |
parent | 704b91ca02f87fe0f6d3e059aa2aeb8e3e823c14 (diff) | |
download | browserenv-832026cddb55d341a025427b3d5edf770a2d71ec.tar.bz2 |
Rename `escapeBrowserCommand()` to `shellEscapeCommand()`
Didn't like `escapeBrowserCommand()` either, since we're escaping the
URL not the rest of the command.
Diffstat (limited to 'browserenv_windows.go')
-rw-r--r-- | browserenv_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/browserenv_windows.go b/browserenv_windows.go index be90ba5..ac44d82 100644 --- a/browserenv_windows.go +++ b/browserenv_windows.go @@ -10,6 +10,6 @@ func shell() (args []string) { } // TODO -func escapeBrowserCommand(browser, url string) string { +func shellEscapeCommand(browser, url string) string { return fmt.Sprintf("%s %s", browser, url) } |