From fb129c1a16ed5feff38d84d0f1db5c55ce661867 Mon Sep 17 00:00:00 2001 From: Kelvie Wong Date: Fri, 27 Jan 2023 15:12:02 -0800 Subject: [PATCH] Fix permissions in ccache dir I think this affects basically nobody but me since everyone else seems to run docker rootless. --- build/build-win64-from-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-win64-from-linux.sh b/build/build-win64-from-linux.sh index eb366e83e..2ba053434 100755 --- a/build/build-win64-from-linux.sh +++ b/build/build-win64-from-linux.sh @@ -29,7 +29,7 @@ if [[ $(id -u) -eq 0 ]]; then # If this was run using sudo, let's make sure the directories are owned by the # real user (and set the BUILDER_UID to it) builder_uid=$SUDO_UID - chown $builder_uid win64-cross win64-cross/output + chown -R $builder_uid win64-cross fi # Assumes you built a container image called dfhack-build-msvc from