From d59cbd05f3d238b69458df458b58b67b439f0590 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Thu, 9 Mar 2023 16:11:18 +0100 Subject: download Northstar to /vipertmp "cache_dir" being wherever your OS puts it's cache, it's the same place mods.js uses to download mods. This prevents cluttering up the gamepath with temporary files. --- src/modules/update.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'src/modules/update.js') diff --git a/src/modules/update.js b/src/modules/update.js index 82a6df1..534a5af 100644 --- a/src/modules/update.js +++ b/src/modules/update.js @@ -161,7 +161,7 @@ update.northstar = async () => { let ns_version = version.northstar(); const latest_version = await requests.getLatestNsVersion(); - console.log(latest_version) + if (latest_version == false) { ipcMain.emit("ns-update-event", "cli.update.noInternet"); return; @@ -187,7 +187,20 @@ update.northstar = async () => { exclude_files(); // start the download of the zip - https.get(requests.getLatestNsVersionLink(), (res) => { + https.get(requests.getLatestNsVersionLink() + "asd", (res) => { + let tmp = path.dirname(settings.zip); + + if (fs.existsSync(tmp)) { + if (! fs.statSync(tmp).isDirectory()) { + fs.rmSync(tmp); + } + } else { + fs.mkdirSync(tmp); + if (fs.existsSync(settings.zip)) { + fs.rmSync(settings.zip); + } + } + let stream = fs.createWriteStream(settings.zip); res.pipe(stream); -- cgit v1.2.3