From 9076213cad0a11ee193018c03c6f52c4c7fa975e Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 19 Mar 2025 08:57:13 +0000 Subject: [PATCH] devcontainer/on-create-command: fix permissions harder. This `chmod -t` seems to fix things on other Codespaces so let's try it here too. --- .devcontainer/on-create-command.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/on-create-command.sh b/.devcontainer/on-create-command.sh index 038f71c80e..08bcf554c8 100755 --- a/.devcontainer/on-create-command.sh +++ b/.devcontainer/on-create-command.sh @@ -3,6 +3,7 @@ set -e # fix permissions so Homebrew and Bundler don't complain sudo chmod -R g-w,o-w /home/linuxbrew +sudo chmod +t -R /home/linuxbrew/ # everything below is too slow to do unless prebuilding so skip it CODESPACES_ACTION_NAME="$(jq --raw-output '.ACTION_NAME' /workspaces/.codespaces/shared/environment-variables.json)"