At VZ4, I get the following error:
Initiating test run...
⚡ This is a turbo test run. https://codecrafters.io/turbo
Running tests. Logs should appear shortly...
[compile] Compiling codecrafters-shell v0.1.0 (/app)
[compile] Finished `release` profile [optimized] target(s) in 1.53s
[compile] Moved ./.codecrafters/run.sh → ./your_program.sh
[compile] Compilation successful.
Debug = true
[tester::#VZ4] Running tests for Stage #VZ4 (Redirection - Redirect stderr)
[tester::#VZ4] [setup] export PATH=/tmp/grape/apple/blueberry:$PATH
[tester::#VZ4] Running ./your_program.sh
[tester::#VZ4] [setup] echo -n "blueberry" > "/tmp/quz/blueberry"
[your-program] $ ls -1 nonexistent 2> /tmp/foo/bar.md
[your-program] $ cat /tmp/foo/bar.md
[your-program] ls: nonexistent: No such file or directory
[tester::#VZ4] ✓ Received redirected error message
[tester::#VZ4] Expected file "/tmp/foo/baz.md" to exist. Error: open /tmp/foo/baz.md: no such file or directory
[your-program] $ echo 'Maria file cannot be found' 2> /tmp/foo/baz.md
[your-program] Maria file cannot be found
[your-program] $
[tester::#VZ4] Assertion failed.
[tester::#VZ4] Test failed
The error [tester::#VZ4] Expected file "/tmp/foo/baz.md" to exist. Error: open /tmp/foo/baz.md: no such file or directory seems to be generated out of order (before executing the next command $ echo 'Maria file cannot be found' 2> /tmp/foo/baz.md)
