Merge pull request #10 from lawrencecraft/master

Fixing #9 - not replacing ampersand in calls to rundll32
This commit is contained in:
skratchdot 2016-03-02 09:40:31 -05:00
commit 75fb7ed420
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 {
return exec.Command(runDll32, cmd, cleaninput(input))
return exec.Command(runDll32, cmd, input)
}
func openWith(input string, appName string) *exec.Cmd {