We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3f77d commit caf76e7Copy full SHA for caf76e7
.travis.yml
@@ -22,7 +22,11 @@ script:
22
- |
23
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
24
docker run --rm \
25
- --env-file <(env | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS|APPVEYOR_|CSC_|_TOKEN|_KEY|AWS_|STRIP|BUILD_') \
+ $(env | \
26
+ grep -Eo '^[^\s=]*(DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS|APPVEYOR_|CSC_|_TOKEN|_KEY|AWS_|STRIP|BUILD_)[^\s=]*' | \
27
+ sed '/^$/d;s/^/-e /' | \
28
+ paste -sd ' ' \
29
+ ) \
30
-v ${PWD}:/project \
31
-v ~/.cache/electron:/root/.cache/electron \
32
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
0 commit comments