summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-04 02:15:41 -0500
committerJeff Carr <[email protected]>2025-10-04 02:15:41 -0500
commit307ae87dec1b929a831050194f60787adb0f99cf (patch)
treefa1723b9d517dfc4577a25ad1ece108cb488f251 /main.go
parent6f7f211eff4ff7f788d8d2e249791daf5791330a (diff)
fix build
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()