From ae7083d23baeaad34fcc9e4f5cde1041e7639e3f Mon Sep 17 00:00:00 2001 From: WahPlus Date: Thu, 30 Apr 2026 15:30:31 +0300 Subject: [PATCH] DFSJKOHhjkafdsjh This is what happens when you use software that has been abandoned for 7 years --- .github/workflows/minify.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/minify.yml b/.github/workflows/minify.yml index 317cacb..4287ea9 100644 --- a/.github/workflows/minify.yml +++ b/.github/workflows/minify.yml @@ -38,19 +38,12 @@ jobs: git checkout main -- . git reset HEAD - - name: Does luamin even exist? Does it find the files? - run: | - which luamin - luamin --version - echo "gug" - find . -name "*.lua" -not -path "./.git/*" - - - name: Minify all Lua files run: | set -e for file in $(find . -name "*.lua" -not -path "./.git/*"); do - luamin -f "$file" > "$file.min" + luamin -f "$file" > "$file.min" || true + # For some stupid fucking reason, luamin returns exit code 1 mv "$file.min" "$file" done