Skip to content

Commit

Permalink
ci: Add missing shebangs
Browse files Browse the repository at this point in the history
No clue how this worked before.
  • Loading branch information
DaanDeMeyer committed Aug 16, 2024
1 parent 4f64cb1 commit aa67388
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}"
Expand Down

0 comments on commit aa67388

Please sign in to comment.