This commit is contained in:
2025-07-25 06:55:08 -07:00
parent 365171fddc
commit 6abb9ce47a
2 changed files with 4 additions and 1 deletions

View File

@@ -18,6 +18,9 @@ func main() {
if outOfDate {
fmt.Println("There is a new version of epochcli, you must update before running")
fmt.Println("Press any key to exit...")
var c rune
fmt.Scanf("%c", &c)
os.Exit(1)
}

View File

@@ -7,7 +7,7 @@ import (
"regexp"
)
const version = "1.0.9"
const version = "1.0.10"
const versionUrl = "https://git.burkey.co/eburk/epochcli/raw/branch/master/version.go"
func needUpdate() (bool, error) {