From 5b47489bf81b796f9a2fd6e85813f037302f8a2b Mon Sep 17 00:00:00 2001 From: kobewi Date: Tue, 19 Jul 2022 00:27:05 +0200 Subject: Abort running if --path does not exist --- main/main.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/main/main.cpp b/main/main.cpp index 2bb67f17f1..8f4f348dba 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1044,10 +1044,9 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph if (I->next()) { String p = I->next()->get(); - if (OS::get_singleton()->set_cwd(p) == OK) { - //nothing - } else { - project_path = I->next()->get(); //use project_path instead + if (OS::get_singleton()->set_cwd(p) != OK) { + OS::get_singleton()->print("Invalid project path specified: \"%s\", aborting.\n", p.utf8().get_data()); + goto error; } N = I->next()->next(); } else { -- cgit v1.2.3