mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 02:18:58 +08:00
`./script/bootstrap` was failing on linux ``` ./script/bootstrap: 8: ./script/bootstrap: [[: not found ``` Fixed by using POSIX compliant `[` instead of `[[`
9 lines
89 B
Bash
Executable File
9 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
npm install
|
|
|
|
# Copy .env template
|
|
[ -f .env ] || cp .env.example .env
|