diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2020-08-18 16:06:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-18 16:06:21 -0400 |
| commit | 21a8da80e115b3121a13fce5835b33885d278a3d (patch) | |
| tree | a73e5c61cf7d1f9117e8a4ee6fa8569e98e9ba73 /bin/build-electron | |
| parent | 811f1714d0e20a40c51398df4d186589d07e23ef (diff) | |
| parent | c2c2d569c245d9982542bb7e7c526f3a9405e5c8 (diff) | |
Merge pull request #769 from inkstitch/lexelby/fix-save-print-pdf
fix save and print PDF buttons
Diffstat (limited to 'bin/build-electron')
| -rwxr-xr-x | bin/build-electron | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/build-electron b/bin/build-electron index dc7a1ca2..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} |
