We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d4d111 commit a0898b4Copy full SHA for a0898b4
as400/utils/updater.go
@@ -3,7 +3,7 @@ package utils
3
import "fmt"
4
5
func InstallUpdater() error {
6
- updaterPath := GetMyPath() + "/utmstack_updater_service"
+ updaterPath := GetMyPath() + "/utmstack_as400_updater_service"
7
8
if err := Execute("chmod", GetMyPath(), "+x", updaterPath); err != nil {
9
return fmt.Errorf("error setting execute permissions: %v", err)
@@ -17,7 +17,7 @@ func InstallUpdater() error {
17
}
18
19
func UninstallUpdater() error {
20
21
22
if !CheckIfPathExist(updaterPath) {
23
return nil
0 commit comments