aboutsummaryrefslogtreecommitdiff
path: root/src/modules/update.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/update.js')
-rw-r--r--src/modules/update.js17
1 files changed, 15 insertions, 2 deletions
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);