Fix inject runtime env (#9421)

Script is using here-string <<< which is not supported by sh, using bash
instead
Also removing "sh" from the command to actually use the bash from the
shebang
This commit is contained in:
Weiko
2025-01-07 11:02:27 +01:00
committed by GitHub
parent 1691fa5065
commit edf0a1818c
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
echo "Injecting runtime environment variables into index.html..."