summaryrefslogtreecommitdiff
path: root/bin/build-electron
diff options
context:
space:
mode:
authorrejbasket <39080670+rejbasket@users.noreply.github.com>2023-05-22 22:33:19 +0200
committerGitHub <noreply@github.com>2023-05-22 22:33:19 +0200
commitef6f6580df6e8fbce913eecc1fe7e0f8caf1315b (patch)
treec1119a5d1affd44ad27e60cc6981ac98534c518d /bin/build-electron
parentda54f104e6bf5d0e98f7479cf1d060c76e0b01f2 (diff)
Update electron version to v14.2.9 (#2214)
Authored-by: rejbasket Co-authored-by: Kaalleen Co-authored-by: Lex Neva
Diffstat (limited to 'bin/build-electron')
-rwxr-xr-xbin/build-electron9
1 files changed, 0 insertions, 9 deletions
diff --git a/bin/build-electron b/bin/build-electron
index b0e93572..cdc98f9d 100755
--- a/bin/build-electron
+++ b/bin/build-electron
@@ -2,15 +2,6 @@
set -e
set -x
-ARCH="$(uname -m)"
-# Check for cpu arch to build mac and linux electron arch
-if [[ "$ARCH" = "arm64" ]] || [[ "$ARCH" = "aarch64" ]]; then
- echo "Found ARM"
- sed -i'' -e 's/CPU_ARCH/'arm64'/' electron/package.json
-else
- echo "Found x64"
- sed -i'' -e 's/CPU_ARCH/'x64'/' electron/package.json
-fi
if [ "$BUILD" = "windows" ]; then
args="-w --ia32"