Releases: manen/run
Releases · manen/run
Release list
v2.0.0
v2.0.0
changes how io works for the bash child process
in 1.0.0, the stdout & stderr of the bash child process were captured and only outputted when the process finished executing: this basically means you could only saw the output of your program after it ran
this new version changes this behavior, stdout for bash is inherited from the run master process, making it so you will see console output as soon as it's outputted (useful for servers, dev servers, etc)
however, if your program (somehow) relies on the old behavior, you can re-enable it by setting the RUN_CAPTURE_IO flag to anything other than 0
RUN_CAPTURE_IO=1 run somethingsmall change but might technically break some things so it's a new big version