• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

fyne-io / fyne / 5049842714

22 May 2023 07:57PM UTC coverage: 62.001% (-0.02%) from 62.021%
5049842714

push

github

GitHub
Merge pull request #3888 from andydotxyz/feature/noanimation

19833 of 31988 relevant lines covered (62.0%)

823.46 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/cmd/fyne/internal/commands/deprecated.go
1
package commands
2

3
import (
4
        "os"
5

6
        "github.com/urfave/cli/v2"
7
        "golang.org/x/sys/execabs"
8
)
9

10
// Vendor returns the vendor cli command.
11
//
12
// Deprecated: Use "go mod vendor" instead.
13
func Vendor() *cli.Command {
×
14
        return &cli.Command{
×
15
                Name:  "vendor",
×
16
                Usage: "Deprecated: Use \"go mod vendor\" instead.",
×
17
                Action: func(_ *cli.Context) error {
×
18
                        cmd := execabs.Command("go", "mod", "vendor")
×
19
                        cmd.Stdout, cmd.Stderr = os.Stdout, os.Stderr
×
20
                        return cmd.Run()
×
21
                },
×
22
        }
23
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc