From 9729d90e81e84ea0e219f465c7ba0ad5bc45fb78 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 22 May 2016 00:58:06 -0500 Subject: [PATCH] Used wrong wget option for downloading to named file. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d840b6e35e..14a65abe10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,11 +58,11 @@ before_install: # Fetch the script to do the actual building/testing. - | if [[ "${STATUS_TESTS}" == "true" ]]; then - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_status.py" -o ../script.py + wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_status.py" -O ../script.py fi - | if [[ "${RELEASE_BUILD}" == "LF" || "${RELEASE_BUILD}" == "CRLF" ]]; then - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_release.py" -o ../script.py + wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_release.py" -O ../script.py fi install: python "${TRAVIS_BUILD_DIR}/../script.py" install