renovate/.devcontainer/post-create.sh

11 lines
165 B
Bash
Raw Normal View History

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