Skip to content

Commit fc86f1c

Browse files
committed
Fix newlines on die messages
1 parent 9840be8 commit fc86f1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bootstrap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function start_webserver() {
1212
$pid = pcntl_fork();
1313
switch($pid) {
1414
case -1:
15-
die('Failed to fork webserver process');
15+
die("Failed to fork webserver process\n");
1616

1717
case 0:
1818
// exec the command
@@ -94,7 +94,7 @@ while (true) {
9494
}
9595

9696
if ($invocation_id == '') {
97-
die('Failed to determine Lambda invocation ID');
97+
die("Failed to determine Lambda invocation ID\n");
9898
}
9999

100100
curl_close($ch);

0 commit comments

Comments
 (0)