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 2f76189 commit 9f51e90Copy full SHA for 9f51e90
goby.go
@@ -19,7 +19,7 @@ import (
19
"github.com/pkg/profile"
20
)
21
22
-const Version string = vm.Version
+const version string = vm.Version
23
24
func main() {
25
profileCPUOptionPtr := flag.Bool("profile-cpu", false, "Profile cpu usage")
@@ -31,7 +31,7 @@ func main() {
31
flag.Parse()
32
33
if *interactiveOptionPtr {
34
- igb.StartIgb(Version)
+ igb.StartIgb(version)
35
os.Exit(0)
36
}
37
@@ -44,7 +44,7 @@ func main() {
44
45
46
if *versionOptionPtr {
47
- fmt.Println(Version)
+ fmt.Println(version)
48
49
50
0 commit comments