Changed some random ass stuff in the minifier Action

This commit is contained in:
2026-04-30 15:22:00 +03:00
committed by GitHub
parent 6e51cddc81
commit 6bf6f119b2
+4 -5
View File
@@ -40,11 +40,10 @@ jobs:
- name: Minify all Lua files
run: |
find . -name "*.lua" \
-not -path "./.git/*" \
| while read -r file; do
minified=$(luamin -f "$file")
echo "$minified" > "$file"
set -e
for file in $(find . -name "*.lua" -not -path "./.git/*"); do
luamin -f "$file" > "$file.min"
mv "$file.min" "$file"
done
- name: Commit and push to minified branch