ci: use shebang with better portability in shell scripts, format shell scripts (#21605)

This commit is contained in:
Turiiya 2024-05-30 16:37:07 +02:00 committed by GitHub
parent a4afcbaa5c
commit 5f83a4d110
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 17 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
for f in examples/sokol/*/ ; do for f in examples/sokol/*/ ; do
echo "compiling shaders for $f ..."; echo "compiling shaders for $f ...";

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -ex set -ex