This website requires JavaScript.
Explore
Help
Sign In
xxq250
/
probot
forked from
mirrors/probot
Watch
1
Star
0
Fork
You've already forked probot
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b6d44f0b9b
probot
/
script
/
bootstrap
9 lines
89 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Create scripts to rule them all
2016-09-18 01:27:58 +08:00
#!/bin/sh
set -e
npm install
Update docs on running app locally
2016-10-16 12:10:52 +08:00
# Copy .env template
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-14 02:16:24 +08:00
[ -f .env ] || cp .env.example .env