2022-03-26 13:34:10 -04:00
|
|
|
//go:build !windows
|
2019-01-14 12:53:19 -05:00
|
|
|
|
|
|
|
package manager
|
|
|
|
|
|
|
|
func trimExeSuffix(s string) (string, error) {
|
|
|
|
return s, nil
|
|
|
|
}
|
2022-09-29 11:21:51 -04:00
|
|
|
|
2019-01-14 12:53:19 -05:00
|
|
|
func addExeSuffix(s string) string {
|
|
|
|
return s
|
|
|
|
}
|