From 27f4b96c231fdb5a4172591bfe7df24741917da0 Mon Sep 17 00:00:00 2001 From: Lyle Douglass Date: Mon, 1 Jan 2024 17:45:17 -0500 Subject: [PATCH] fix: correct download path --- internal/appUpdate.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/appUpdate.go b/internal/appUpdate.go index 68215ed..d73bb37 100644 --- a/internal/appUpdate.go +++ b/internal/appUpdate.go @@ -96,7 +96,7 @@ func UpdateApp(appVersion string) { util.Log.Fatalf("Error getting current user: %s", err) } homeDir := user.HomeDir - downloadApp(client, latestVersion, homeDir+"Downloads") + downloadApp(client, latestVersion, homeDir+"\\Downloads") util.Log.Info("New version downloaded, please close this application and " + "move the new version to your desired location to replace this version") } else { diff --git a/main.go b/main.go index cba9bf5..689db5e 100644 --- a/main.go +++ b/main.go @@ -11,7 +11,7 @@ import ( func main() { - const version = "5.0.1" + const version = "5.0.2" var ( logging string