From 6cdc2336cd11897cf1f7f0e78b56cf42c17a6aa2 Mon Sep 17 00:00:00 2001 From: netkas Date: Fri, 20 Sep 2024 18:41:47 -0400 Subject: [PATCH] Add exit check and update project include paths --- .idea/php.xml | 8 ++++++-- src/ConfigLib/Program.php | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.idea/php.xml b/.idea/php.xml index 43259c7..c6952bf 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -11,10 +11,14 @@ + + + + + + - - diff --git a/src/ConfigLib/Program.php b/src/ConfigLib/Program.php index dcb4c46..2f1a6d1 100644 --- a/src/ConfigLib/Program.php +++ b/src/ConfigLib/Program.php @@ -51,6 +51,7 @@ if(!file_exists($configuration->getPath())) { print(sprintf('Configuration \'%s\' does not exist, aborting' . PHP_EOL, $configuration->getName())); + exit(1); }