Fixing #9 - not replacing ampersand in calls to rundll32

This commit is contained in:
Lawrence Craft 2016-03-02 13:33:19 +00:00
parent c8748311a7
commit aeb1cab633
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ func cleaninput(input string) string {
} }
func open(input string) *exec.Cmd { func open(input string) *exec.Cmd {
return exec.Command(runDll32, cmd, cleaninput(input)) return exec.Command(runDll32, cmd, input)
} }
func openWith(input string, appName string) *exec.Cmd { func openWith(input string, appName string) *exec.Cmd {