From 2d61bea2ebc6fdb8e3f7823715d0964486dc4dcf Mon Sep 17 00:00:00 2001 From: Taylor Smith Date: Sat, 10 Feb 2018 17:05:57 -0600 Subject: [PATCH] Can we use rsync instead of cp? --- build_tools/travis/after_success.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/travis/after_success.sh b/build_tools/travis/after_success.sh index f9d7b2942..346d4d1e8 100755 --- a/build_tools/travis/after_success.sh +++ b/build_tools/travis/after_success.sh @@ -12,7 +12,7 @@ if [[ "$COVERAGE" == "true" ]]; then # Need to run coveralls from a git checkout, so we copy .coverage # from TEST_DIR where nosetests has been run - cp $TEST_DIR/.coverage $TRAVIS_BUILD_DIR + rsync $TEST_DIR/.coverage $TRAVIS_BUILD_DIR --ignore-existing cd $TRAVIS_BUILD_DIR # Ignore coveralls failures as the coveralls server is not