diff --git a/uppbox/MakeInstall6/Main.cpp b/uppbox/MakeInstall6/Main.cpp index 4feb01f47..a1d40c414 100644 --- a/uppbox/MakeInstall6/Main.cpp +++ b/uppbox/MakeInstall6/Main.cpp @@ -81,7 +81,7 @@ void Make(String pkg, String exe, String method = "CLANGx64") CONSOLE_APP_MAIN { - String version = AsString(atoi(LoadFile("u:/upp-revision"))); + String version = AsString(atoi(LoadFile("u:/upp-revision")) + 2270); Log("version: " + version); DeleteFolderDeep(tmp); diff --git a/uppbox/MakeMacInstall/Main.cpp b/uppbox/MakeMacInstall/Main.cpp index 9999d8c71..50bba8123 100644 --- a/uppbox/MakeMacInstall/Main.cpp +++ b/uppbox/MakeMacInstall/Main.cpp @@ -74,7 +74,7 @@ int FilterVersion(int c) { return c == ':' ? '_' : c; } CONSOLE_APP_MAIN { - String version = AsString(atoi(LoadFile(GetHomeDirFile("upp-revision")))); + String version = AsString(atoi(LoadFile(GetHomeDirFile("upp-revision"))) + 2270); Log("version: " + version); DeleteFolderDeep(release); diff --git a/uppbox/MakePosixInstall/Main.cpp b/uppbox/MakePosixInstall/Main.cpp index e0159b97e..fb98eb909 100644 --- a/uppbox/MakePosixInstall/Main.cpp +++ b/uppbox/MakePosixInstall/Main.cpp @@ -91,7 +91,7 @@ CONSOLE_APP_MAIN { StdLogSetup(LOG_COUT|LOG_FILE); - String version = AsString(atoi(LoadFile(GetHomeDirFile("upp-revision")))); + String version = AsString(atoi(LoadFile(GetHomeDirFile("upp-revision"))) + 2270); RLOG("version: " + version); DeleteFolderDeep(release);