Compare commits

..

1 Commits

Author SHA1 Message Date
Lea Anthony
50e2037fba fix: same version comparison 2019-05-12 14:55:39 +10:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
package cmd
// Version - Wails version
const Version = "v0.13.1"
const Version = "v0.13.2"

View File

@@ -83,7 +83,7 @@ func updateToVersion(targetVersion *cmd.SemanticVersion, force bool) error {
var targetVersionString = "v" + targetVersion.String()
// Early exit
if targetVersion.String() == cmd.Version {
if targetVersionString == cmd.Version {
logger.Green("Looks like you're up to date!")
return nil
}