diff options
Diffstat (limited to 'bin/build-electron')
| -rwxr-xr-x | bin/build-electron | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/build-electron b/bin/build-electron index 3496abf1..11616cb4 100755 --- a/bin/build-electron +++ b/bin/build-electron @@ -1,6 +1,7 @@ #!/bin/bash set -e +set -x if [ "$BUILD" = "windows" ]; then args="-w --ia32" @@ -11,6 +12,6 @@ elif [ "$BUILD" = "osx" ]; then fi cd electron -npm install -g yarn +which yarn > /dev/null 2>&1 || npm install -g yarn yarn --link-duplicates --pure-lockfile yarn run dist ${args} |
