Skip to content

Releases: manen/run

Release list

v2.0.0

Choose a tag to compare

@manen manen released this 05 May 16:58
5ed83d0

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 something

small change but might technically break some things so it's a new big version

v1.0.0

Choose a tag to compare

@manen manen released this 05 May 16:51
8cb0c42
Update README.md