Skip to content

Commit

Permalink
fix: correct download path
Browse files Browse the repository at this point in the history
  • Loading branch information
lyledouglass committed Jan 1, 2024
1 parent 6271d88 commit 27f4b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/appUpdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

func main() {

const version = "5.0.1"
const version = "5.0.2"

var (
logging string
Expand Down

0 comments on commit 27f4b96

Please sign in to comment.