giving terminal a more helpful error message when it can't start its passed command

This commit is contained in:
Benji Dial 2021-02-17 16:48:13 -05:00
parent 3a36028612
commit 302666775a

View file

@ -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;