fix dummy mode environment variable
This commit is contained in:
parent
2dc9fcc6ef
commit
c814b8c103
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ from bundlewrap.utils.text import bold, yellow
|
|||
from bundlewrap.utils.ui import io
|
||||
|
||||
PASSWORD_STORE_DIR = expanduser(environ.get('BW_PASS_DIR', '~/.password-store'))
|
||||
DUMMY_MODE = environ.get('PW_PASS_DUMMY_MODE', '0') == '1'
|
||||
DUMMY_MODE = environ.get('BW_PASS_DUMMY_MODE', '0') == '1'
|
||||
|
||||
cache = {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue