delete source/downloads after building in script, add .editorconfig (#2000)

* delete source/downloads after building in script, not in dockerfile

* add editorconfig

* eol

* cs fix

* added \n there

* we expect Hello\n

* Change tab width for shell scripts to 4 spaces

* bring back embed comment
This commit is contained in:
Marc
2025-11-20 11:49:09 +01:00
committed by GitHub
parent c93729e136
commit 49e98cc8d6
11 changed files with 101 additions and 90 deletions
+16 -16
View File
@@ -1,16 +1,16 @@
<?php
ignore_user_abort(true);
require_once __DIR__.'/_executor.php';
return function () {
if($_GET['finish'] ?? false) {
frankenphp_finish_request();
}
echo 'hi';
flush();
$status = (string) connection_status();
error_log("request {$_GET['i']}: " . $status);
};
<?php
ignore_user_abort(true);
require_once __DIR__.'/_executor.php';
return function () {
if($_GET['finish'] ?? false) {
frankenphp_finish_request();
}
echo 'hi';
flush();
$status = (string) connection_status();
error_log("request {$_GET['i']}: " . $status);
};