aboutsummaryrefslogtreecommitdiff
path: root/src/modules/mods.js
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2024-02-04 23:28:36 +0100
committer0neGal <mail@0negal.com>2024-02-04 23:28:36 +0100
commit0b3cdfb3d31c18d94bd54634239deabc28e0597e (patch)
tree1c71d8b2c585735021447e40034573f0535342c7 /src/modules/mods.js
parent18d8dce5388cd48a34b52f2cb5e7accde3a42b15 (diff)
downloadViper-0b3cdfb3d31c18d94bd54634239deabc28e0597e.tar.gz
Viper-0b3cdfb3d31c18d94bd54634239deabc28e0597e.zip
removed use of "vipertmp" folder
Previously we downloaded the Northstar archive and packages to a folder named "vipertmp" in the system's cache folder, now that's just moved into "Viper/Temp" (still inside the system's cache folder) With this, all Viper cache is stored in the same folder in the system's cache folder... Wait... Why wasn't it always like this? Oh right, my past stupidity and lack of foresight. Oh well. "vipertmp" still gets deleted when clearing install cache, along with the new folder, so doing so will by itself clean up the old folder.
Diffstat (limited to 'src/modules/mods.js')
-rw-r--r--src/modules/mods.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/mods.js b/src/modules/mods.js
index 97d4e16..9e3e81e 100644
--- a/src/modules/mods.js
+++ b/src/modules/mods.js
@@ -597,7 +597,7 @@ mods.installFromURL = (url, author) => {
// download mod to a temporary location
https.get(url, (res) => {
- let tmp = path.join(app.getPath("cache"), "vipertmp");
+ let tmp = path.join(app.getPath("userData"), "Temp");
let modlocation = path.join(tmp, "/mod.zip");
// make sure the temporary folder exists