save_stdout option should be true by default

This commit is contained in:
JerryXiao 2021-04-22 10:10:49 +08:00
parent 16263fdc72
commit 5579bd4231
Signed by: Jerry
GPG key ID: 22618F758B5BE2E5

View file

@ -47,7 +47,7 @@ if CUSTOM_SYNC:
EXTRA_SAFE = bool(_config.get('extra_safe', False)) EXTRA_SAFE = bool(_config.get('extra_safe', False))
SHELL = str(_config.get('shell', '/bin/bash')) 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()) HOLD = _config.get('hold', dict())
for (k, v) in HOLD.items(): for (k, v) in HOLD.items():