summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2018-02-22 18:20:13 +0100
committerJ0WI <J0WI@users.noreply.github.com>2018-02-22 18:20:13 +0100
commitca29fd57aa46260b6711879ca40dff8cc650354b (patch)
treea2295f8c73b04de8a3afe37c015e2635058e739f /.travis.yml
parent8bdcf4b0118f498bf858940c7d6e6e756745d26f (diff)
Move bashbrew to before_script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 5fcbcb2d..9af3dd92 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,10 +11,10 @@ branches:
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
- - wget https://doi-janky.infosiftr.net/job/bashbrew/lastSuccessfulBuild/artifact/bin/bashbrew-amd64 && ln -s bashbrew-amd64 bashbrew
- - export PATH=$PATH:$PWD
before_script:
+ - wget https://doi-janky.infosiftr.net/job/bashbrew/lastSuccessfulBuild/artifact/bin/bashbrew-amd64 && ln -s bashbrew-amd64 bashbrew
+ - export PATH=$PATH:$PWD
- env | sort
- image="nextcloud:${VERSION}${VARIANT:+-$VARIANT}"
- if [[ "$ARCH" == 'i386' ]]; then sed -i -e 's/FROM php/FROM i386\/php/g' "${VERSION}/${VARIANT}/Dockerfile"; fi