// Copyright 2017-2025 WIT.COM Inc. All rights reserved. // Use of this source code is governed by the GPL 3.0 package main import ( "embed" "os" "unicode" "go.wit.com/lib/gui/prep" ) // sent via -ldflags var VERSION string var BUILDTIME string // used for shell auto completion var ARGNAME string = "wit" // todo: get this from $0 ? //go:embed resources/* var resources embed.FS func main() { me = new(mainType) // autocomplete must be processed before there is anything sent to STDOUT or STDERR me.sh = prep.Bash3(&argv) // add support for bash autocomplete with go-arg me.homedir, _ = os.UserHomeDir() // store shortcut here todo: add better logic if argv.Upgrade != nil { doUpgrade() okExit("") } if argv.Rdate != nil { doRdate() okExit("") } if argv.Build != nil { doBuild() okExit("") } if argv.Git != nil { doGit() okExit("") } if argv.Clone != nil { doClone() okExit("") } if argv.WITCOM { doWITCOM() okExit("") } if argv.Upgrade != nil { doUpgrade() } if argv.Publish != nil { if err := doPublish(); err != nil { badExit(err) } okExit("") } if argv.Zoo != nil { if areSuperuser() { exitOnErrorRealtime([]string{"journalctl", "-n", "100", "-f", "_SYSTEMD_UNIT=zood.service"}) } okExit("do something here") } okExit("do what?") } // this is dumb. sync this with go-deb func trimNonNumericFromStart(s string) string { for i, r := range s { if unicode.IsDigit(r) { return s[i:] } } return "" }