quiet output
This commit is contained in:
parent
f72756b089
commit
0ed94d57e8
|
@ -256,7 +256,7 @@ func doCheckoutShared() error {
|
||||||
if me.argvCheckoutUser {
|
if me.argvCheckoutUser {
|
||||||
log.Info("Starting git checkout user")
|
log.Info("Starting git checkout user")
|
||||||
if argv.Force {
|
if argv.Force {
|
||||||
// make the user directories
|
log.Info("going to force create user branches")
|
||||||
if err := makeUserBranches(); err != nil {
|
if err := makeUserBranches(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -270,10 +270,7 @@ func doCheckoutShared() error {
|
||||||
log.Info("Starting git checkout devel")
|
log.Info("Starting git checkout devel")
|
||||||
if argv.Force {
|
if argv.Force {
|
||||||
log.Info("going to force create devel branches")
|
log.Info("going to force create devel branches")
|
||||||
// make the devel directories
|
makeDevelBranches()
|
||||||
if err := makeDevelBranches(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// this uses rill and is super fast
|
// this uses rill and is super fast
|
||||||
doAllCheckoutDevel()
|
doAllCheckoutDevel()
|
||||||
|
@ -316,7 +313,6 @@ func makeDevelBranches() error {
|
||||||
for all.Scan() {
|
for all.Scan() {
|
||||||
repo := all.Next()
|
repo := all.Next()
|
||||||
branch := repo.GetDevelBranchName()
|
branch := repo.GetDevelBranchName()
|
||||||
log.Info("going to force create devel branches", repo.GetGoPath())
|
|
||||||
if repo.Exists(filepath.Join(".git/refs/heads", branch)) {
|
if repo.Exists(filepath.Join(".git/refs/heads", branch)) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue