renovate/.devcontainer/post-create.sh
2023-11-30 13:48:31 +00:00

10 lines
165 B
Bash
Executable file

#!/bin/bash
set -e
if [[ "${CODESPACES}" == true ]]; then
echo "Fixing permissions of /tmp for GitHub Codespaces..." >&2
sudo chmod 1777 /tmp
fi
pnpm install