function build()

in core/php8.1Action/compile.php [71:82]


function build(string $shim, string $src, string $main) : void
{
    $contents = <<<EOT
#!/bin/bash
cd $src
exec php -f /bin/runner.php -- "$main"

EOT;

    file_put_contents($shim, $contents);
    chmod($shim, 0755);
}