summary refs log tree commit diff
path: root/cdn
diff options
context:
space:
mode:
authorThe Arcane Brony <myrainbowdash949@gmail.com>2021-12-21 20:49:58 +0000
committerThe Arcane Brony <myrainbowdash949@gmail.com>2021-12-21 21:49:58 +0100
commitcbd337701f5d1364df1bc774b8ed55fc07029b10 (patch)
tree9c1ba2b15fc8a2a2b6d36506a1bd610d2b37b951 /cdn
parentRepo cleanup, remove fs-extras (diff)
downloadserver-cbd337701f5d1364df1bc774b8ed55fc07029b10.tar.xz
Improve build scripts, strip more fs-extras
Diffstat (limited to 'cdn')
-rw-r--r--cdn/tests/cdn_endpoints.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdn/tests/cdn_endpoints.test.js b/cdn/tests/cdn_endpoints.test.js
index 8cf16748..5a543e54 100644
--- a/cdn/tests/cdn_endpoints.test.js
+++ b/cdn/tests/cdn_endpoints.test.js
@@ -1,6 +1,6 @@
 const dotenv = require("dotenv");
 const path = require("path");
-const fse = require("fs-extra");
+const fs = require("fs");
 dotenv.config();
 
 // TODO: write unittest to check if FileStorage.ts is working
@@ -21,7 +21,7 @@ if (process.env.STORAGE_PROVIDER === "file") {
 	} else {
 		process.env.STORAGE_LOCATION = path.join(__dirname, "..", "files", "/");
 	}
-	fse.ensureDirSync(process.env.STORAGE_LOCATION);
+	if(!fs.existsSync(process.env.STORAGE_LOCATION)) fs.mkdirSync(process.env.STORAGE_LOCATION, {recursive:true});
 }
 const { CDNServer } = require("../dist/Server");
 const { Config } = require("@fosscord/util");