here’s my repo
currently im stuck on stage Single quotes #ni6
during execution, i got the error command not found
[tester::#NI6] Running tests for Stage #NI6 (Quoting - Single quotes)
[tester::#NI6] [setup] export PATH=/tmp/orange/raspberry/blueberry:$PATH
[tester::#NI6] Running ./your_program.sh
[tester::#NI6] [setup] echo -n "mango raspberry." > "/tmp/foo/f 91"
[tester::#NI6] [setup] echo -n "banana grape." > "/tmp/foo/f 94"
[tester::#NI6] [setup] echo -n "banana blueberry." > "/tmp/foo/f 10"
[your-program] $ echo 'world script'
[your-program] world script
[tester::#NI6] ✓ Received expected response
[your-program] $ echo script test
[your-program] script test
[tester::#NI6] ✓ Received expected response
[your-program] $ echo 'shell example' 'test''world'
[your-program] shell example testworld
[tester::#NI6] ✓ Received expected response
[your-program] $ cat '/tmp/foo/f 91' '/tmp/foo/f 94' '/tmp/foo/f 10'
[your-program] cat '/tmp/foo/f 91' '/tmp/foo/f 94' '/tmp/foo/f 10': command not found
[tester::#NI6] Output does not match expected value.
[tester::#NI6] Expected: "mango raspberry.banana grape.banana blueberry."
[tester::#NI6] Received: "cat '/tmp/foo/f 91' '/tmp/foo/f 94' '/tmp/foo/f 10': command not found"
[your-program] $
[tester::#NI6] Assertion failed.
[tester::#NI6] Test failed
but weirdly when i tried to run locally, i got file not found which is expected
cat: "'/tmp/foo/f 65'": No such file or directory
cat: "'/tmp/foo/f 31'": No such file or directory
cat: "'/tmp/foo/f 37'": No such file or directory
ive tried to use my local debugger, and there seems to be nothing wrong with the argv content, am i missing something ?