Skip to content

Commit

Permalink
Correct executable for windows rdp run
Browse files Browse the repository at this point in the history
  • Loading branch information
breathbath committed Apr 23, 2021
1 parent 05fbbd8 commit 46c0d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/rdp/exec_win.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
package rdp

func CommandProvider(filePath string) (cmd string, args []string) {
return "start", []string{filePath}
return "cmd.exe", []string{"/C", "start", filePath}
}

0 comments on commit 46c0d77

Please sign in to comment.