aboutsummaryrefslogtreecommitdiff
path: root/src/SelfUpdater/index.js
diff options
context:
space:
mode:
authorjakob.stendahl <jakob.stendahl@infomedia.dk>2022-12-04 13:33:45 +0100
committerJakob Stendahl <jakob.stendahl@outlook.com>2022-12-04 13:34:22 +0100
commitc3b4742eeceee9250f8059972dd150f38e2eb021 (patch)
treeedde9ea65b554ff345788a916f238aed4a772b35 /src/SelfUpdater/index.js
parentc5dc2dfb92e4a6584d1e727bc39b8c9578f85b57 (diff)
downloadLuxcena-Neo-c3b4742eeceee9250f8059972dd150f38e2eb021.tar.gz
Luxcena-Neo-c3b4742eeceee9250f8059972dd150f38e2eb021.zip
Fix simulation stuttering (still resource intensive) and some oter QOL upgrades
Diffstat (limited to 'src/SelfUpdater/index.js')
-rw-r--r--src/SelfUpdater/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SelfUpdater/index.js b/src/SelfUpdater/index.js
index 68f6a1d..cc7ce13 100644
--- a/src/SelfUpdater/index.js
+++ b/src/SelfUpdater/index.js
@@ -212,7 +212,7 @@ class Updater {
let arch = (await this.run(`uname`, ["-m"])).out.replace("\n","");
if (arch == "armv6l") {
await this.run("wget", ["https://unofficial-builds.nodejs.org/download/release/v14.10.0/node-v14.10.0-linux-armv6l.tar.gz"]);
- await this.run("tar", ["-xzf" "node-v14.10.0-linux-armv6l.tar.gz"]);
+ await this.run("tar", ["-xzf", "node-v14.10.0-linux-armv6l.tar.gz"]);
await this.run("cp", ["-r", "node-v14.10.0-linux-armv6l/*", "/usr/local"]);
await this.run("rm", ["-r", "node-v14.10.0-linux-armv6l"]);
await this.run("rm", ["node-v14.10.0-linux-armv6l.tar.gz"]);