mirror of
https://github.com/BigJk/end_of_eden.git
synced 2026-02-06 18:57:21 +00:00
6 lines
110 B
Bash
Executable File
6 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for file in ./assets/scripts/**/*.lua; do
|
|
echo "Formatting: $file"
|
|
lua-format "$file" -i
|
|
done |