We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1be5e7 commit a82ab51Copy full SHA for a82ab51
1 file changed
src/windows.php
@@ -29,9 +29,10 @@
29
if (!is_dir($runtimeProcessPath)) {
30
mkdir($runtimeProcessPath);
31
}
32
-$processFiles = [
33
- __DIR__ . DIRECTORY_SEPARATOR . 'start.php'
34
-];
+$processFiles = [];
+if (config('server.listen')) {
+ $processFiles[] = __DIR__ . DIRECTORY_SEPARATOR . 'start.php';
35
+}
36
foreach (config('process', []) as $processName => $config) {
37
$processFiles[] = write_process_file($runtimeProcessPath, $processName, '');
38
0 commit comments