devcontainer/on-create-command: fix permissions harder.

This `chmod -t` seems to fix things on other Codespaces so let's try it
here too.
This commit is contained in:
Mike McQuaid 2025-03-19 08:57:13 +00:00
parent 81313133f1
commit 9076213cad
No known key found for this signature in database

View File

@ -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)"