Skip to content
Snippets Groups Projects
Commit 5afc6700 authored by Peter Kietzmann's avatar Peter Kietzmann
Browse files

Merge pull request #3616 from cgundogan/pr/shell/not_found_one_line

sys/shell/shell.c: command not found in one line
parents 5fffc177 4deb0213
No related branches found
No related tags found
No related merge requests found
...@@ -199,8 +199,7 @@ static void handle_input_line(shell_t *shell, char *line) ...@@ -199,8 +199,7 @@ static void handle_input_line(shell_t *shell, char *line)
print_help(shell->command_list); print_help(shell->command_list);
} }
else { else {
puts("shell: command not found:"); printf("shell: command not found: %s\n", argv[0]);
puts(argv[0]);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment