Skip to content

Commit

Permalink
Fixed updating to latest from non-master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Oct 23, 2019
1 parent e4b8acd commit 12a0798
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ matrix:
install:
- sudo apt-get update && sudo apt-get install -qyy debootstrap
- sudo chown -R 1000 $TRAVIS_BUILD_DIR
- if [[ -n "$LATEST" ]]; then git submodule update --remote --merge Pillow; fi
- if [[ -n "$LATEST" ]]; then
git submodule update --remote Pillow;
(cd Pillow && git checkout master);
fi
- cd "$DOCKER" && make update
script:
- if [[ -n "$DOCKER_USERNAME" ]]; then echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
Expand Down

0 comments on commit 12a0798

Please sign in to comment.