diff options
Diffstat (limited to 'argv.struct.go')
| -rw-r--r-- | argv.struct.go | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/argv.struct.go b/argv.struct.go index 2414ac2..ae0d1f9 100644 --- a/argv.struct.go +++ b/argv.struct.go @@ -21,7 +21,7 @@ type args struct { Droplet *DropletCmd `arg:"subcommand:droplet" help:"do things on virtual machines"` Upgrade *UpgradeCmd `arg:"subcommand:upgrade" help:"apt upgrade packages installed from mirrors.wit.com"` Publish *PublishCmd `arg:"subcommand:publish" help:"publish packages"` - Gui *GuiCmd `arg:"subcommand:gui" help:"start the gui"` + Test *TestCmd `arg:"subcommand:test" help:"test things"` RepoMap string `arg:"--repomap" help:"location of the repomap"` DryRun bool `arg:"--dry-run" help:"only show what would be packaged"` Install bool `arg:"--install" help:"go install the binaries first"` @@ -47,10 +47,8 @@ type DropletCmd struct { Trim *EmptyCmd `arg:"subcommand:trim" help:"clean out stuff and power off vm"` } -type GuiCmd struct { - GuiToolkit string `arg:"--gui" help:"which GUI toolkit to load"` - GuiDebug string `arg:"--gui-debug" help:"enable GUI debugging"` - GuiBuild string `arg:"--gui-build" help:"build the GUI plugins"` +type TestCmd struct { + Version *EmptyCmd `arg:"subcommand:version" help:"clean out stuff and power off vm"` } type LinuxCmd struct { |
