From a1ab6788e4df5cf270e99befdd69026e5d7fcd3a Mon Sep 17 00:00:00 2001 From: baude Date: Fri, 8 Feb 2019 20:09:04 -0600 Subject: Remove urfave/cli from libpod This is the final cleanup to remove urfave/sli from libpod. Removed old, disabled tests that have not been run in over a year. Signed-off-by: baude --- vendor/github.com/urfave/cli/cli.go | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 vendor/github.com/urfave/cli/cli.go (limited to 'vendor/github.com/urfave/cli/cli.go') diff --git a/vendor/github.com/urfave/cli/cli.go b/vendor/github.com/urfave/cli/cli.go deleted file mode 100644 index 90c07eb8e..000000000 --- a/vendor/github.com/urfave/cli/cli.go +++ /dev/null @@ -1,22 +0,0 @@ -// Package cli provides a minimal framework for creating and organizing command line -// Go applications. cli is designed to be easy to understand and write, the most simple -// cli application can be written as follows: -// func main() { -// cli.NewApp().Run(os.Args) -// } -// -// Of course this application does not do much, so let's make this an actual application: -// func main() { -// app := cli.NewApp() -// app.Name = "greet" -// app.Usage = "say a greeting" -// app.Action = func(c *cli.Context) error { -// println("Greetings") -// return nil -// } -// -// app.Run(os.Args) -// } -package cli - -//go:generate python ./generate-flag-types cli -i flag-types.json -o flag_generated.go -- cgit v1.2.3-54-g00ecf