From 22a22a279741565ebf7beafe2d97c81df0e814be Mon Sep 17 00:00:00 2001 From: Mike Miller <87874+mikeage@users.noreply.github.com> Date: Fri, 20 Dec 2024 14:21:29 +0200 Subject: [PATCH] Fix chown error in newer Alpine images [affects new builds without caches] (#804) Fix chown error in newer Alpine images --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f80d0f6e8..c37c2bb38 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -533,7 +533,7 @@ jobs: du -mcsh Library/* find Library -size +50M -exec ls -altrh {} \; # chown all files, since some are owned by root after the docker run - docker run -v $(pwd)/Library:/mnt alpine chown $(id -u).$(id -g) -R /mnt/ + docker run -v $(pwd)/Library:/mnt alpine chown $(id -u):$(id -g) -R /mnt/ # Print the files to be deleted find Library/Bee/ -name 'symbols.zip' -or -name 'libil2cpp*.so' -or -name 'launcher-release.apk' | tee todelete.txt cat todelete.txt | xargs -r rm