forked from toolshed/abra
12 lines
152 B
Go
12 lines
152 B
Go
//go:build !windows
|
|
|
|
package manager
|
|
|
|
func trimExeSuffix(s string) (string, error) {
|
|
return s, nil
|
|
}
|
|
|
|
func addExeSuffix(s string) string {
|
|
return s
|
|
}
|