Skip to content

Commit 4de7ca4

Browse files
committed
Use wget instead of curl.
Because sourcing from stdin is not supported with Bash 3.2, using wget to download the script to the current directory allows a shorter command line.
1 parent 83173ec commit 4de7ca4

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ script:
2727
- if [ $TRAVIS_OS_NAME = osx ]; then SHELLSPEC_FLAGS="--kcov"; fi
2828
- shellspec $SHELLSPEC_FLAGS spec/units
2929
- shellspec $SHELLSPEC_FLAGS spec/integration
30-
- curl --remote-name -sSL
31-
https://raw.githubusercontent.com/neimad/travis-python/$TRAVIS_COMMIT/travis-python.bash
32-
&& source travis-python.bash
30+
- wget https://raw.githubusercontent.com/neimad/travis-python/$TRAVIS_COMMIT/travis-python.bash
31+
- source travis-python.bash
3332
- install_python $HOME/Python $PYTHON
3433
- which python
3534
- python --version

0 commit comments

Comments
 (0)