Skip to content

Commit

Permalink
Merge pull request #1286 from buildkite/rollback-ufave-cli-upgrade
Browse files Browse the repository at this point in the history
Downgrade github.com/urfave/cli to v1
  • Loading branch information
pda authored Sep 9, 2020
2 parents 9254ab1 + dc81adc commit 5211d4d
Show file tree
Hide file tree
Showing 20 changed files with 721 additions and 764 deletions.
6 changes: 3 additions & 3 deletions bootstrap/integration/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/buildkite/agent/v3/clicommand"
"github.com/buildkite/agent/v3/experiments"
"github.com/buildkite/bintest"
"github.com/urfave/cli/v2"
"github.com/urfave/cli"
)

func TestMain(m *testing.M) {
Expand All @@ -18,8 +18,8 @@ func TestMain(m *testing.M) {
app := cli.NewApp()
app.Name = "buildkite-agent"
app.Version = agent.Version()
app.Commands = []*cli.Command{
&clicommand.BootstrapCommand,
app.Commands = []cli.Command{
clicommand.BootstrapCommand,
}

if err := app.Run(os.Args); err != nil {
Expand Down
Loading

0 comments on commit 5211d4d

Please sign in to comment.