11 lines
154 B
Go
11 lines
154 B
Go
|
package shell
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
func Execname(filename string) string {
|
||
|
if runtime.GOOS == "windows" {
|
||
|
return filename + ".exe"
|
||
|
}
|
||
|
return filename
|
||
|
}
|