Skip to content

Commit

Permalink
Add long versions of parameters to scale_command
Browse files Browse the repository at this point in the history
  • Loading branch information
vanschelven authored and a-b committed Jan 14, 2021
1 parent 3cad879 commit daa64ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command/v7/scale_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ type ScaleCommand struct {
BaseCommand

RequiredArgs flag.AppName `positional-args:"yes"`
Force bool `short:"f" description:"Force restart of app without prompt"`
Instances flag.Instances `short:"i" required:"false" description:"Number of instances"`
Force bool `long:"force" short:"f" description:"Force restart of app without prompt"`
Instances flag.Instances `long:"instances" short:"i" required:"false" description:"Number of instances"`
DiskLimit flag.Megabytes `short:"k" required:"false" description:"Disk limit (e.g. 256M, 1024M, 1G)"`
MemoryLimit flag.Megabytes `short:"m" required:"false" description:"Memory limit (e.g. 256M, 1024M, 1G)"`
ProcessType string `long:"process" default:"web" description:"App process to scale"`
Expand Down

0 comments on commit daa64ed

Please sign in to comment.