explicitly call script with bash for consistency

This commit is contained in:
Mike Chelen 2016-01-27 02:10:03 +00:00
parent 84427dc6d5
commit e32eb57151
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ image: php:5.6
before_script:
# Install dependencies
- ci/docker_install.sh > /dev/null
- bash ci/docker_install.sh > /dev/null
test:app:
script:
@ -112,7 +112,7 @@ with a different docker image version and the runner will do the rest:
```yaml
before_script:
# Install dependencies
- ci/docker_install.sh > /dev/null
- bash ci/docker_install.sh > /dev/null
# We test PHP5.6
test:5.6: