Skip to content

Commit

Permalink
adding a wait flag to releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Alajrami committed Mar 19, 2018
1 parent fbebb03 commit bf7055e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions release.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ type release struct {
Purge bool
Test bool
Protected bool
Wait bool
Set map[string]string
}

Expand Down Expand Up @@ -62,6 +63,7 @@ func (r release) print() {
fmt.Println("\tpurge : ", r.Purge)
fmt.Println("\ttest : ", r.Test)
fmt.Println("\tprotected : ", r.Protected)
fmt.Println("\twait : ", r.Wait)
fmt.Println("\tvalues to override from env:")
printMap(r.Set)
fmt.Println("------------------- ")
Expand Down

0 comments on commit bf7055e

Please sign in to comment.