We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7695e commit 18e6f97Copy full SHA for 18e6f97
version.txt
@@ -1 +1 @@
1
-v1.17.0
+v1.17.1
version/version.go
@@ -45,7 +45,9 @@ func (v *VersionInfo) PromptUpdateIfAvailable() {
45
if v.IsOutdated {
46
fmt.Fprintln(os.Stderr, "A new version of the bootdev CLI is available!")
47
fmt.Fprintln(os.Stderr, "Please run the following command to update:")
48
- fmt.Fprintf(os.Stderr, " bootdev upgrade\n\n")
+ fmt.Fprintln(os.Stderr, " bootdev upgrade")
49
+ fmt.Fprintln(os.Stderr, "or")
50
+ fmt.Fprintf(os.Stderr, " go install github.com/bootdotdev/bootdev@%s\n\n", v.LatestVersion)
51
}
52
53
0 commit comments