summaryrefslogtreecommitdiff
path: root/subCommand.go
diff options
context:
space:
mode:
Diffstat (limited to 'subCommand.go')
-rw-r--r--subCommand.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/subCommand.go b/subCommand.go
index 69b3db1..7935d11 100644
--- a/subCommand.go
+++ b/subCommand.go
@@ -5,16 +5,12 @@ package main
import (
"go.wit.com/lib/gui/shell"
- "go.wit.com/log"
)
func doSubcommand() (string, error) {
var s string
var err error
- log.Info("Starting forge with subcommand:", me.argv.Cmd)
-
- //// start standard argv subcommand processing here ////
if argv.Dev != nil {
// first find the repos or gopaths to operate on
s, err = doDev()
@@ -95,13 +91,6 @@ func doSubcommand() (string, error) {
if argv.Verify != nil {
s, err = doVerify()
}
- //// end standard argv subcommand processing here ////
- // if the gui starts, it doesn't yet go to the end normally
- if argv.Gui != nil {
- me.myGui.Start() // loads the GUI toolkit
- doGui() // start making our forge GUI
- debug() // sits here forever
- }
return s, err
}