This commit is contained in:
Nav
2023-08-20 15:36:50 +01:00
parent e6cafdb3cf
commit 38a9ce8728
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ namespace Bloom\BuildScripts;
$buildPath = $argv[1] ?? null; $buildPath = $argv[1] ?? null;
if (empty($buildPath)) { if (empty($buildPath)) {
print "Missing build path. Aborting\n"; print "Missing build path. Aborting\n";
die; exit(1);
} }
require_once __DIR__ . "/TargetDescriptionFiles/Factory.php"; require_once __DIR__ . "/TargetDescriptionFiles/Factory.php";

View File

@@ -21,7 +21,7 @@ namespace Services
* @return * @return
*/ */
static std::string resourcesDirPath() { static std::string resourcesDirPath() {
return PathService::applicationDirPath() + "/../resources/"; return PathService::applicationDirPath() + "/../resources";
} }
/** /**