make scripts executable, running them with sh does something weird on travis

This commit is contained in:
Bruno Windels 2018-07-27 16:01:54 +02:00
parent edf37e3592
commit c3b7e6c7cb
9 changed files with 8 additions and 8 deletions

View file

@ -35,14 +35,14 @@ puppeteer.launch({headless: false});
### Setup
Run `sh install.sh`. This will:
Run `./install.sh`. This will:
- install synapse, fetches the master branch at the moment. If anything fails here, please refer to the synapse README to see if you're missing one of the prerequisites.
- install riot, this fetches the master branch at the moment.
- install dependencies (will download copy of chrome)
### Run tests
Run tests with `sh run.sh`.
Run tests with `./run.sh`.
Developer Guide
===============