GODT-2078: Launcher inception.

This commit is contained in:
Jakub
2022-11-11 07:58:54 +01:00
parent bbcb7ad980
commit b1eefd6c85
2 changed files with 46 additions and 34 deletions

View File

@ -17,6 +17,12 @@
package versioner
import "strings"
func getExeName(name string) string {
if strings.HasSuffix(name, ".exe") {
return name
}
return name + ".exe"
}