mirror of
https://github.com/isjerryxiao/pacroller.git
synced 2024-11-14 20:32:24 +08:00
save_stdout option should be true by default
This commit is contained in:
parent
16263fdc72
commit
5579bd4231
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ if CUSTOM_SYNC:
|
|||
|
||||
EXTRA_SAFE = bool(_config.get('extra_safe', False))
|
||||
SHELL = str(_config.get('shell', '/bin/bash'))
|
||||
SAVE_STDOUT = bool(_config.get('save_stdout', False))
|
||||
SAVE_STDOUT = bool(_config.get('save_stdout', True))
|
||||
|
||||
HOLD = _config.get('hold', dict())
|
||||
for (k, v) in HOLD.items():
|
||||
|
|
Loading…
Reference in a new issue