summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-03-21 16:16:35 -0500
committerJeff Carr <[email protected]>2024-03-21 16:16:35 -0500
commit2ce9051921ef1ef93b6bcaa48850f2b207b86598 (patch)
treef2e19ffa6cef7eb4a153e01450618cca9c85ad09 /git.go
parent804acc169a49320a5f9a0efb60847071f7fee7f2 (diff)
exec things to STDOUT
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'git.go')
-rw-r--r--git.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.go b/git.go
index f51d74d..6e05316 100644
--- a/git.go
+++ b/git.go
@@ -298,7 +298,7 @@ func (rs *RepoStatus) CheckoutUser() bool {
log.Log(REPO, rs.realPath.String(), "is dirty")
return false
}
- if ! rs.BranchExists(bName) {
+ if !rs.BranchExists(bName) {
return false
}
cmd := []string{"git", "checkout", bName}