giving terminal a more helpful error message when it can't start its passed command
This commit is contained in:
parent
3a36028612
commit
302666775a
1 changed files with 2 additions and 2 deletions
|
@ -225,9 +225,9 @@ void main(const char *cmd) {
|
|||
window = _new_window(width, height, pixbuf);
|
||||
_paint_window(window);
|
||||
|
||||
_task_handle_t child_handle = run_command(cmd, this_task);
|
||||
_task_handle_t child_handle = *cmd ? run_command(cmd, this_task) : 0;
|
||||
if (!child_handle) {
|
||||
add_sz_ww("Failed to run passed command. Press any key to close.\n");
|
||||
add_sz_ww("Either failed to run passed command, or none was passed. Remember, executable needs to be a full path. Press any key to close.\n");
|
||||
_paint_window(window);
|
||||
while (1) {
|
||||
struct window_action action;
|
||||
|
|
Reference in a new issue