summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/main.go b/main.go
index aedc24b60..ad753c407 100644
--- a/main.go
+++ b/main.go
@@ -19,7 +19,6 @@ var (
ErrSubprocess = errors.New("running subprocess")
subprocess *exec.Cmd
startTime time.Time
- debugging bool
// Rev - Git Revision
Rev string
@@ -27,9 +26,9 @@ var (
// Version - Version number
Version = "unversioned"
- builddate string
- debuggingPointer = flag.Bool("debug", false, "a boolean")
- versionFlag = flag.Bool("v", false, "Print the current version")
+ builddate string
+ debuggingFlag = flag.Bool("debug", false, "a boolean")
+ versionFlag = flag.Bool("v", false, "Print the current version")
)
func homeDirectory() string {
@@ -53,7 +52,7 @@ func commandLog(objects ...interface{}) {
}
func localLog(colour color.Attribute, path string, objects ...interface{}) {
- if !debugging {
+ if !*debuggingFlag {
return
}
f, _ := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0644)
@@ -75,7 +74,6 @@ func navigateToRepoRootDirectory() {
func main() {
startTime = time.Now()
- debugging = *debuggingPointer
devLog("\n\n\n\n\n\n\n\n\n\n")
flag.Parse()
if *versionFlag {