You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -83,14 +81,11 @@ public function execute(array $parameters, array $arguments): void
83
81
84
82
if (!file_exists($projectPath)) {
85
83
Console::foregroundColor(ConsoleColor::Red);
86
-
Console::writeLine("Couldn't find a project to run in {$workspace}, Ensure if it exists, or pass the correct project path using the option --project.");
84
+
Console::writeLine("Couldn't find a project to run in {$projectRoot}, Ensure if it exists, or pass the correct project path using the option --project.");
87
85
Console::resetColor();
88
86
return;
89
87
}
90
88
91
-
$workspace = dirname($projectPath);
92
-
$loader->setWorkspace($workspace);
93
-
94
89
$projectFile = simplexml_load_file($projectPath);
95
90
96
91
if (!$projectFile) {
@@ -100,41 +95,31 @@ public function execute(array $parameters, array $arguments): void
0 commit comments