Skip to content

Commit ccf0a50

Browse files
committed
Fix assets directory lookup
1 parent 0b5dd49 commit ccf0a50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/bref-dev-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $app->command('run [-a|--assets=]', function (OutputInterface $output, ?string $
2222
$output->writeln("<info>Serving PHP from serverless.yml routes</info>");
2323
$output->writeln("<info>Serving assets from $assetsDirectory/</info>");
2424

25-
$server = new Process(['php', '-S', '127.0.0.1:8000', $handler, '-t', $assetsDirectory]);
25+
$server = new Process(['php', '-S', '127.0.0.1:8000', '-t', $assetsDirectory, $handler]);
2626
$server->setTimeout(null);
2727
$server->setTty(true);
2828
$server->setEnv([

0 commit comments

Comments
 (0)