summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-03 13:13:40 -0500
committerJeff Carr <[email protected]>2025-10-03 13:13:40 -0500
commit888ef5304907d0e8a98472a31728b5398972b647 (patch)
tree6b72b9e0d991b42084201f44e41e74a61e5ceaa9 /main.go
parent37aeae9b8ff49f42a135a1ff4255835889f2eeba (diff)
new argv stuffv0.1.1
Diffstat (limited to 'main.go')
-rw-r--r--main.go16
1 files changed, 4 insertions, 12 deletions
diff --git a/main.go b/main.go
index d7ba3ec..68f6073 100644
--- a/main.go
+++ b/main.go
@@ -33,13 +33,13 @@ func main() {
okExit("")
}
- if argv.Debian != nil {
- doDebian()
+ if argv.Rdate != nil {
+ doRdate()
okExit("")
}
- if argv.Rdate != nil {
- doRdate()
+ if argv.Build != nil {
+ doBuild()
okExit("")
}
@@ -105,14 +105,6 @@ func main() {
okExit("")
}
- if argv.MakeInstall != nil {
- if err := doInstall(); err != nil {
- log.Info("doInstall() failed", err)
- badExit(err)
- }
- okExit("EVERYTHING BUILT!")
- }
-
okExit("do what?")
}