C++ Build a shell runs locally but fails when using codecrafters submit

Hi

I am on stage 8 type command of the c++ shell challenge I have a working solution on my machine however when i do codecrafters submit i get the following error.

[compile] Compilation successful.
Debug = true
[tester::#EZ5] Running tests for Stage #EZ5 (Implement type)
[tester::#EZ5] Running ./your_program.sh
[your-program] -- Running vcpkg install
[tester::#EZ5] ^ Expected prompt ("$ ") but received "-- Running vcpkg install"
[your-program] All requested packages are currently installed.
[your-program] All requested installations completed successfully in: 6.85 us
[your-program] -- Running vcpkg install - done
[your-program] -- Configuring done (0.0s)
[your-program] -- Generating done (0.0s)
[your-program] -- Build files have been written to: /app/build
[your-program] [ 11%] Building CXX object CMakeFiles/shell.dir/src/BuiltIn.cpp.o
[your-program] [ 22%] Building CXX object CMakeFiles/shell.dir/src/Command.cpp.o
[your-program] [ 33%] Building CXX object CMakeFiles/shell.dir/src/Parser.cpp.o
[your-program] [ 44%] Building CXX object CMakeFiles/shell.dir/src/Register.cpp.o
[your-program] [ 55%] Building CXX object CMakeFiles/shell.dir/src/echo.cpp.o
[your-program] [ 66%] Building CXX object CMakeFiles/shell.dir/src/exitCommand.cpp.o
[your-program] [ 77%] Building CXX object CMakeFiles/shell.dir/src/main.cpp.o
[tester::#EZ5] Test failed

To me it looks like a build error but it builds fine on my machine so i am at a loss on what to do here.

Any advice would be greatly appreciated , Thanks in advance.

Hey @Edt12, looks like the issue is that the .codecrafters folder was accidentally deleted from your repository.

Our tester relies on files in that folder to compile and run your solution. You can recover it from your last working commit (4573e0b1fd6288f9f724e3e1e95887a4044fea8f):

Let me know if you’re still running into issues after restoring the folder.

Thank you for your help and quick reply works now