]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
ci: Add missing shebangs 2959/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Fri, 16 Aug 2024 22:47:56 +0000 (00:47 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 19 Aug 2024 08:20:26 +0000 (10:20 +0200)
No clue how this worked before.

.github/workflows/ci.yml

index a2f053f24757aed488fb2a9226f81daad8d0bf14..43f2e5c69ac1b6009ee10e27d5978e2bfedc75d2 100644 (file)
@@ -165,6 +165,7 @@ jobs:
           # fail if the script already exists, to avoid hard to debug CI errors
           [[ -f mkosi.configure ]] && exit 1
           tee mkosi.configure <<EOF
+          #!/bin/bash
           echo "Hello from inside mkosi.configure!" >&2
           cat
           EOF
@@ -175,6 +176,7 @@ jobs:
           do
               [[ -f "mkosi.${script}" ]] && exit 1
               tee "mkosi.${script}" <<TOK
+          #!/bin/bash
           echo "Hello from inside mkosi.${script}" >&2
           TOK
               chmod +x "mkosi.${script}"