From 405f482af37de22a2ee7a207b9a52e0a1b669b70 Mon Sep 17 00:00:00 2001 From: Denis Treskunov Date: Thu, 6 Feb 2020 17:16:51 -0800 Subject: [PATCH] source: /usr/bin/env: cannot execute binary file --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1eb7afc6..d7b30d4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,13 +57,13 @@ deploy: edge: true # pass environment variables to the container without exposing them in the logs script: | - env | sed 's/^/export /g' > env && \ + env | sed 's/^/export /g' > env.source && \ docker run --rm \ -v "$(pwd):/io" \ -w /io \ --entrypoint bash \ library/python \ - -c "source env && pip install twine && twine check wheelhouse/* && twine upload wheelhouse/*" + -c "source env.source && pip install twine && twine check wheelhouse/* && twine upload wheelhouse/*" on: all_branches: true condition: $TRAVIS_TAG && $TWINE_USERNAME && $TWINE_PASSWORD