add command line options
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
d590533ad5
commit
44e6fc669e
12
args.go
12
args.go
|
@ -12,11 +12,15 @@ import (
|
||||||
"go.wit.com/log"
|
"go.wit.com/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// GadgetDisplay string `arg:"env:DISPLAY"`
|
// GadgetDisplay string `arg:"env:DISPLAY"`
|
||||||
// GadgetTmpLog bool `arg:"--tmp-log" help:"automatically send STDOUT to /tmp"`
|
// GadgetTmpLog bool `arg:"--tmp-log" help:"automatically send STDOUT to /tmp"`
|
||||||
// GadgetVerboseDNS bool `arg:"--verbose" help:"debug your dns settings"`
|
// GadgetVerboseDNS bool `arg:"--verbose" help:"debug your dns settings"`
|
||||||
var args struct {
|
var args struct {
|
||||||
TmpLog bool `arg:"--tmp-log" help:"automatically send STDOUT to /tmp"`
|
DownloadAll bool `arg:"--download-all" help:"download everything from go.wit.com"`
|
||||||
|
GitPull bool `arg:"--git-pull" help:"do git pull in every repository"`
|
||||||
|
CheckoutUser bool `arg:"--switch-to-user-branch" help:"switch everything to your user branch"`
|
||||||
|
CheckoutDevel bool `arg:"--switch-to-devel-branch" help:"switch everything to the devel branch"`
|
||||||
|
TmpLog bool `arg:"--tmp-log" help:"automatically send STDOUT to /tmp"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -25,7 +25,6 @@ func globalResetOptions(box *gui.Node) {
|
||||||
me.autoDryRun = group2.NewCheckbox("autotypist --dry-run")
|
me.autoDryRun = group2.NewCheckbox("autotypist --dry-run")
|
||||||
me.autoDryRun.SetChecked(true)
|
me.autoDryRun.SetChecked(true)
|
||||||
|
|
||||||
|
|
||||||
buildOptions := group2.NewGrid("buildOptions", 2, 1)
|
buildOptions := group2.NewGrid("buildOptions", 2, 1)
|
||||||
|
|
||||||
buildOptions.NewLabel("start over")
|
buildOptions.NewLabel("start over")
|
||||||
|
@ -56,7 +55,7 @@ func globalResetOptions(box *gui.Node) {
|
||||||
func attemptAutoRebuild() {
|
func attemptAutoRebuild() {
|
||||||
os.Setenv("GO111MODULE", "off")
|
os.Setenv("GO111MODULE", "off")
|
||||||
|
|
||||||
version := "v0.19.1"
|
version := "latest"
|
||||||
|
|
||||||
homeDir := me.userHomePwd.String()
|
homeDir := me.userHomePwd.String()
|
||||||
quickCmd(homeDir, []string{"mkdir", "-p", "go/src/go.wit.com/apps/"})
|
quickCmd(homeDir, []string{"mkdir", "-p", "go/src/go.wit.com/apps/"})
|
||||||
|
|
|
@ -0,0 +1,122 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"go.wit.com/log"
|
||||||
|
)
|
||||||
|
|
||||||
|
/*
|
||||||
|
This will process the command line arguements like --git-pull
|
||||||
|
|
||||||
|
It should do them in a smart order. If any of them are called,
|
||||||
|
don't show the GUI at all and just exit.
|
||||||
|
*/
|
||||||
|
|
||||||
|
func argGitPull() bool {
|
||||||
|
log.Info("running git pull everywhere")
|
||||||
|
me.autotypistWindow.Hide()
|
||||||
|
cmd := []string{"git", "pull"}
|
||||||
|
var failed int = 0
|
||||||
|
for _, repo := range me.allrepos {
|
||||||
|
log.Info("Running:", repo.String(), cmd)
|
||||||
|
err, output := repo.status.RunCmd(cmd)
|
||||||
|
if err == nil {
|
||||||
|
log.Info(output)
|
||||||
|
} else {
|
||||||
|
failed += 1
|
||||||
|
log.Info("Something went wrong. Got err", err)
|
||||||
|
log.Info("output =", output)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
log.Info("Ran git pull in all repos. failure count =", failed)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func argCheckoutDevel() bool {
|
||||||
|
log.Info("running git checkout devel everwhere")
|
||||||
|
me.autotypistWindow.Hide()
|
||||||
|
var failed int = 0
|
||||||
|
for _, repo := range me.allrepos {
|
||||||
|
if repo.status.CheckDirty() {
|
||||||
|
log.Info("skipping dirty repo", repo.String())
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
branch := repo.status.GetDevelBranchName()
|
||||||
|
cmd := []string{"git", "checkout", branch}
|
||||||
|
log.Info("Running:", cmd, "in", repo.String())
|
||||||
|
err, output := repo.status.RunCmd(cmd)
|
||||||
|
if err == nil {
|
||||||
|
log.Info("git checkout worked", output)
|
||||||
|
} else {
|
||||||
|
failed += 1
|
||||||
|
log.Info("git checkout failed")
|
||||||
|
log.Info("Something went wrong. Got err", err)
|
||||||
|
log.Info("output =", output)
|
||||||
|
// return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
log.Info("Ran git checkout in all repos. failure count =", failed)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func argCheckoutUser() bool {
|
||||||
|
log.Info("running git checkout devel everwhere")
|
||||||
|
me.autotypistWindow.Hide()
|
||||||
|
var failed int = 0
|
||||||
|
for _, repo := range me.allrepos {
|
||||||
|
if repo.status.CheckDirty() {
|
||||||
|
log.Info("skipping dirty repo", repo.String())
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
branch := repo.status.GetUserBranchName()
|
||||||
|
cmd := []string{"git", "checkout", branch}
|
||||||
|
log.Info("Running:", cmd, "in", repo.String())
|
||||||
|
err, output := repo.status.RunCmd(cmd)
|
||||||
|
if err == nil {
|
||||||
|
log.Info("git checkout worked", output)
|
||||||
|
} else {
|
||||||
|
failed += 1
|
||||||
|
log.Info("git checkout failed")
|
||||||
|
log.Info("Something went wrong. Got err", err)
|
||||||
|
log.Info("output =", output)
|
||||||
|
// return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
log.Info("Ran git checkout in all repos. failure count =", failed)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func handleCmdLine() {
|
||||||
|
var doExit bool = false
|
||||||
|
|
||||||
|
if args.CheckoutDevel {
|
||||||
|
argCheckoutDevel()
|
||||||
|
doExit = true
|
||||||
|
} else {
|
||||||
|
log.Info("not switching to devel branches")
|
||||||
|
}
|
||||||
|
|
||||||
|
if args.CheckoutUser {
|
||||||
|
argCheckoutUser()
|
||||||
|
doExit = true
|
||||||
|
} else {
|
||||||
|
log.Info("not switching to user branches")
|
||||||
|
}
|
||||||
|
|
||||||
|
if args.GitPull {
|
||||||
|
if argGitPull() {
|
||||||
|
log.Info("git pull everywhere worked")
|
||||||
|
} else {
|
||||||
|
log.Info("git failed somewhere")
|
||||||
|
}
|
||||||
|
doExit = true
|
||||||
|
} else {
|
||||||
|
log.Info("not running git pull everywhere")
|
||||||
|
}
|
||||||
|
|
||||||
|
if doExit {
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
}
|
3
main.go
3
main.go
|
@ -30,6 +30,9 @@ func main() {
|
||||||
autotypistWindow()
|
autotypistWindow()
|
||||||
repolistWindow()
|
repolistWindow()
|
||||||
|
|
||||||
|
// process everything on the command line
|
||||||
|
handleCmdLine()
|
||||||
|
|
||||||
for _, repo := range me.allrepos {
|
for _, repo := range me.allrepos {
|
||||||
repo.status.Update()
|
repo.status.Update()
|
||||||
repo.newScan()
|
repo.newScan()
|
||||||
|
|
Loading…
Reference in New Issue