summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/main.go b/main.go
index 63810c3..f5620b5 100644
--- a/main.go
+++ b/main.go
@@ -71,6 +71,20 @@ func main() {
okExit("")
}
+ if argv.Dev != nil {
+ if argv.Dev.Install != "" {
+ if err := doInstall(); err != nil {
+ badExit(err)
+ }
+ }
+ if argv.Dev.Build != "" {
+ if err := doBuild(); err != nil {
+ badExit(err)
+ }
+ }
+ okExit("")
+ }
+
/*
if argv.Show.BuildForge {
buildForge()