Skip to content

Commit dcd22f1

Browse files
committed
feat(deisctl) : add update command and updatectl package
1 parent 5602a17 commit dcd22f1

3 files changed

Lines changed: 649 additions & 0 deletions

File tree

deisctl/deisctl.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"strconv"
88

99
"github.com/deis/deisctl"
10+
"github.com/deis/deisctl/updatectl"
1011
docopt "github.com/docopt/docopt-go"
1112
)
1213

@@ -194,6 +195,8 @@ Options:
194195
err = cmdInstall(c)
195196
case "uninstall":
196197
err = cmdUninstall(c)
198+
case "update":
199+
updatectl.Update(os.Args)
197200
default:
198201
fmt.Printf(usage)
199202
os.Exit(2)

0 commit comments

Comments
 (0)