From a0e9fcb11cdb16752942216f18c7081cf2b1702f Mon Sep 17 00:00:00 2001 From: Luke K Date: Mon, 25 May 2020 08:56:46 +0000 Subject: [PATCH] remove debug and cleanup --- cmd/create.go | 5 ----- go.mod | 1 - 2 files changed, 6 deletions(-) diff --git a/cmd/create.go b/cmd/create.go index ed1d79ab..2803e1f3 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -2,7 +2,6 @@ package cmd import ( "errors" - "fmt" "regexp" "github.com/ory/viper" @@ -111,16 +110,12 @@ func create(cmd *cobra.Command, args []string) (err error) { // If we are running as an interactive terminal, allow the user // to mutate default config prior to execution. if isInteractive() { - fmt.Printf("Initial Config: \n%#v\n", config) config, err = gatherFromUser(config) if err != nil { return err } - fmt.Printf("Final Config: \n%#v", config) } - return - // Initializer creates a deployable noop function implementation in the // configured path. initializer := appsody.NewInitializer() diff --git a/go.mod b/go.mod index b52f43a7..ab829efe 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,6 @@ require ( contrib.go.opencensus.io/exporter/ocagent v0.6.0 // indirect contrib.go.opencensus.io/exporter/prometheus v0.1.0 // indirect contrib.go.opencensus.io/exporter/stackdriver v0.13.1 // indirect - github.com/docker/docker-credential-helpers v0.6.3 github.com/google/go-containerregistry v0.0.0-20200423114255-8f808463544c // indirect github.com/openzipkin/zipkin-go v0.2.2 // indirect github.com/ory/viper v1.7.4