8000 Return the global version flag for compatibility by andydotxyz · Pull Request #59 · fyne-io/tools · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Return the global version flag for compatibility #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merg 8000 ed 1 commit into from
Apr 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
9 changes: 8 additions & 1 deletion cmd/fyne/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ package main
import (
"fmt"
"os"
"runtime/debug"

"fyne.io/tools/cmd/fyne/internal/commands"
"github.com/urfave/cli/v2"

"fyne.io/tools/cmd/fyne/internal/commands"
)

func main() {
Expand All @@ -28,6 +30,11 @@ func main() {
},
}

info, ok := debug.ReadBuildInfo()
if ok {
app.Version = info.Main.Version
}

if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
Expand Down
0