master > master: minor fixes for windows

This commit is contained in:
RD 2022-08-29 19:04:03 +02:00
parent 1ee5e7415b
commit 32ef695c87
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
set shell := [ "bash", "-uc" ]
# set shell := [ "bash", "-uc" ]
_default:
@- just --unsorted --choose
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -44,4 +44,6 @@ def enter(*args: str):
if __name__ == '__main__':
sys.tracebacklimit = 0;
# NOTE: necessary for Windows, to ensure that console output is rendered correctly:
os.system('');
enter(*sys.argv[1:]);