We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5602a17 commit dcd22f1Copy full SHA for dcd22f1
3 files changed
deisctl/deisctl.go
@@ -7,6 +7,7 @@ import (
7
"strconv"
8
9
"github.com/deis/deisctl"
10
+ "github.com/deis/deisctl/updatectl"
11
docopt "github.com/docopt/docopt-go"
12
)
13
@@ -194,6 +195,8 @@ Options:
194
195
err = cmdInstall(c)
196
case "uninstall":
197
err = cmdUninstall(c)
198
+ case "update":
199
+ updatectl.Update(os.Args)
200
default:
201
fmt.Printf(usage)
202
os.Exit(2)
0 commit comments