Skip to content
Snippets Groups Projects
Select Git revision
  • 04fecf4baafd30b1ac139d47a4a43c562a62b2de
  • master default
2 results

post-create.sh

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