We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18dd868 commit 57b0081Copy full SHA for 57b0081
1 file changed
client-go/cmd/config.go
@@ -94,7 +94,7 @@ func ConfigSet(appID string, configVars []string) error {
94
95
quit := progress()
96
configObj := api.Config{Values: configMap}
97
- _, err = config.Set(c, appID, configObj)
+ configObj, err = config.Set(c, appID, configObj)
98
99
quit <- true
100
<-quit
@@ -103,7 +103,11 @@ func ConfigSet(appID string, configVars []string) error {
103
return err
104
}
105
106
- fmt.Print("done\n\n")
+ if release, ok := configObj.Values["DEIS_RELEASE"]; ok {
107
+ fmt.Printf("done, %s\n\n", release)
108
+ } else {
109
+ fmt.Print("done\n\n")
110
+ }
111
112
return ConfigList(appID, false)
113
0 commit comments