Skip to content

Commit

Permalink
0.0.2 - output error
Browse files Browse the repository at this point in the history
  • Loading branch information
Stan Bondi committed Sep 16, 2017
1 parent a238d56 commit 45c5c0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apply/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func ensureSecretsForRepo(client drone.Client, manifestSecret *mfst.SecretDef, r
if err != nil {
fmt.Printf("%s %s\n", Green("✓"), Bold(secret.Name))
} else {
fmt.Printf("%s %s (Error: %s).\n", Red("✕"), Bold(secret.Name), err)
fmt.Printf("%s %s (Error: %s).\n", Red("✕"), Bold(secret.Name), err.Error())
}
}

Expand Down
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package main

import (
"fmt"
"log"
"os"

Expand All @@ -10,7 +9,7 @@ import (
"github.com/urfave/cli"
)

const version string = "0.0.1"
const version string = "0.0.2"

func main() {
app := cli.NewApp()
Expand Down

0 comments on commit 45c5c0d

Please sign in to comment.