diff --git a/userspace/programs/Shell/Execute.cpp b/userspace/programs/Shell/Execute.cpp index 2be027eb..eb82d207 100644 --- a/userspace/programs/Shell/Execute.cpp +++ b/userspace/programs/Shell/Execute.cpp @@ -100,6 +100,7 @@ BAN::ErrorOr Execute::execute_command_no_wait(const Inte CHECK_FD_OR_PERROR_AND_EXIT(command.fd_out, STDOUT_FILENO); execv(command.command.get().data(), const_cast(exec_args.data())); + perror("execv"); exit(errno); }