Actually free space in macOS action

Looks like the command was broken all the time but it was unnoticable due to `|| true`
This commit is contained in:
Ilya Fedin
2025-12-02 14:13:45 +00:00
committed by John Preston
parent 7319665bda
commit 2005814fca
+1 -3
View File
@@ -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'