mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-10 22:16:28 +00:00
10 lines
199 B
Bash
Executable file
10 lines
199 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
|
|
|
|
COREPACK_ENABLE_DOWNLOAD_PROMPT=0 pnpm install
|