From 236bf8487ece9d0c9f5f0925a56d98528c5166f6 Mon Sep 17 00:00:00 2001 From: WahPlus Date: Thu, 30 Apr 2026 15:53:48 +0300 Subject: [PATCH] Let's find out. --- .github/workflows/minify.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/minify.yml b/.github/workflows/minify.yml index 077f9f1..c86775c 100644 --- a/.github/workflows/minify.yml +++ b/.github/workflows/minify.yml @@ -42,10 +42,9 @@ jobs: - name: Minify all Lua files run: | - set -e for file in $(find . -name "*.lua" -not -path "./.git/*"); do echo $file - luamin -f "$file" > "$file" || true + cat "$file" | luamin > "$file" done - name: Commit and push to minified branch