Skip to content

Commit 4180f22

Browse files
committed
Rename environment variable for debug mode
1 parent 4dc7a23 commit 4180f22

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ $ vagrant up
8787
In case you want to see `stdout` output of the commands running in the background:
8888
8989
```shell
90-
$ DEBUG=true vagrant up
90+
$ HOSTKEEPER_DEBUG=true vagrant up
9191
```
9292
9393
#### Recompile assets/node modules/bower components
@@ -101,7 +101,7 @@ $ vagrant provision
101101
Again, in case you want to see `stdout` output of the commands running in the background:
102102
103103
```shell
104-
$ DEBUG=true vagrant up
104+
$ HOSTKEEPER_DEBUG=true vagrant up
105105
```
106106
107107
#### Remove virtual machine

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Debug mode?
2-
debugMode = ENV['DEBUG']
2+
debugMode = ENV['HOSTKEEPER_DEBUG']
33

44
# Check if debug mode and set variable with string
55
if debugMode

0 commit comments

Comments
 (0)