From 2005814fcae2f74cf4db199513d27f45656f12a0 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Tue, 2 Dec 2025 14:13:45 +0000 Subject: [PATCH] Actually free space in macOS action Looks like the command was broken all the time but it was unnoticable due to `|| true` --- .github/workflows/mac.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 7e91758f6e..12c8ebd18b 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -95,9 +95,7 @@ jobs: ./$REPO_NAME/Telegram/build/prepare/mac.sh skip-release silent - name: Free up some disk space. - run: | - cd Libraries - find . -iname "*.dir" -exec rm -rf {} || true \; + run: find Libraries -iwholename "*.dir/*" -delete - name: Telegram Desktop build. if: env.ONLY_CACHE == 'false'