From 12da297be0a0933071ba2a886c543be10fd5ac6c Mon Sep 17 00:00:00 2001 From: Denis Treskunov Date: Thu, 6 Feb 2020 17:30:16 -0800 Subject: [PATCH] fix quoting of exported variables --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d7b30d4e..0823c529 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,7 +57,7 @@ deploy: edge: true # pass environment variables to the container without exposing them in the logs script: | - env | sed 's/^/export /g' > env.source && \ + env | sed -re 's/^([^=]+)=(.*)$/export \1="\2"/g' > env.source && \ docker run --rm \ -v "$(pwd):/io" \ -w /io \