Files
probot/script/bootstrap
Avinash Sridhar c48789de75 Fix POSIX compliance on bootstrap
`./script/bootstrap`  was failing on linux

```
./script/bootstrap: 8: ./script/bootstrap: [[: not found
```
Fixed by using POSIX compliant `[` instead of `[[`
2017-03-13 14:16:24 -04:00

9 lines
89 B
Bash
Executable File

#!/bin/sh
set -e
npm install
# Copy .env template
[ -f .env ] || cp .env.example .env