Open Era-Dorta opened 15 hours ago
The shell commands always fail to execute on windows due to adding the ; exit 0 to the command in this line https://github.com/metwork-framework/jinja2_shell_extension/blob/master/jinja2_shell_extension/__init__.py#L16
; exit 0
To replace ; exit 0 by || exit 0 would be ok for Windows (and Linux by the way) I think ?
|| exit 0
The shell commands always fail to execute on windows due to adding the
; exit 0
to the command in this line https://github.com/metwork-framework/jinja2_shell_extension/blob/master/jinja2_shell_extension/__init__.py#L16