frankenphp icon indicating copy to clipboard operation
frankenphp copied to clipboard

Fix: Missing shebang

Open PrinceSajjadHussain opened this issue 6 months ago • 1 comments

The javascript files lack a shebang at the top of the file. This means they can't be executed directly.

Fix: --- a/testdata/load-test.js +++ b/testdata/load-test.js @@ -1,3 +1,5 @@ +#!/usr/bin/env node + import http from 'k6/http' import { check } from 'k6'

PrinceSajjadHussain avatar Jun 20 '25 15:06 PrinceSajjadHussain

please merge this pull request @rquadling @beberlei @DracoBlue @samdark

PrinceSajjadHussain avatar Jun 20 '25 16:06 PrinceSajjadHussain