blob: eae5da872d27d63265591d035f4209417a770165 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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
|