|
@@ -60,7 +60,7 @@ func autoDetectExecutable() string {
|
|
|
}
|
|
|
} else {
|
|
|
if fileExists("arozos") {
|
|
|
- return "arozos"
|
|
|
+ return "./arozos"
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -68,6 +68,8 @@ func autoDetectExecutable() string {
|
|
|
binaryExecPath := "arozos_" + runtime.GOOS + "_" + runtime.GOARCH
|
|
|
if runtime.GOOS == "windows" {
|
|
|
binaryExecPath += ".exe"
|
|
|
+ } else {
|
|
|
+ binaryExecPath = "./" + binaryExecPath
|
|
|
}
|
|
|
|
|
|
if fileExists(binaryExecPath) {
|