diff --git a/app/Commands/ExecuteCommand.php b/app/Commands/ExecuteCommand.php index 0c0d66e..b165e8c 100644 --- a/app/Commands/ExecuteCommand.php +++ b/app/Commands/ExecuteCommand.php @@ -67,8 +67,8 @@ public function handle() protected function getProjectAliases(): array { $file = match (true) { - File::exists($path = getcwd() . '/aliases.dev.json') => File::get($path), - File::exists($path = getcwd() . '/aliases.json') => File::get($path), + File::exists($path = getcwd() . DIRECTORY_SEPARATOR . 'aliases.dev.json') => File::get($path), + File::exists($path = getcwd() . DIRECTORY_SEPARATOR . 'aliases.json') => File::get($path), default => throw new FileNotFoundException('aliases.json or aliases.dev.json not found.') }; diff --git a/alias b/application similarity index 100% rename from alias rename to application diff --git a/builds/alias b/builds/alias index 596a663..2bb84e6 100755 Binary files a/builds/alias and b/builds/alias differ