aboutsummaryrefslogtreecommitdiff
path: root/beku.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2018-09-14 04:12:49 +0700
committerShulhan <ms@kilabit.info>2018-09-14 04:12:49 +0700
commit4690dcc618467ccb9a1d474d710c863ec6cffdc1 (patch)
treeb88fbf0c08c2246f5479b95c5c4fe075c6baad2f /beku.go
parent063617ef0271519fded1e60146f708a9e919a4ab (diff)
downloadbeku-4690dcc618467ccb9a1d474d710c863ec6cffdc1.tar.xz
Replace local debug variable with debug package
Diffstat (limited to 'beku.go')
-rw-r--r--beku.go9
1 files changed, 1 insertions, 8 deletions
diff --git a/beku.go b/beku.go
index 628ae37..8890249 100644
--- a/beku.go
+++ b/beku.go
@@ -25,8 +25,7 @@ const (
dirTestdata = "testdata"
dirVendor = "vendor"
- envDEBUG = "BEKU_DEBUG"
- envPATH = "PATH"
+ envPATH = "PATH"
msgCleanDir = "Clean destination directory?"
msgContinue = "Continue?"
@@ -62,12 +61,6 @@ var (
)
var (
- // Debug level for this package. Set from environment variable
- // BEKU_DEBUG.
- Debug debugMode
-)
-
-var (
defStdout = os.Stdout
defStderr = os.Stderr