remove providers path
publish / publish (push) Has been cancelled

This commit is contained in:
Dax Raad
2025-07-23 12:15:31 -04:00
parent 38b4d1e03d
commit c2c65c796a
-2
View File
@@ -13,7 +13,6 @@ export namespace Global {
export const Path = { export const Path = {
data, data,
bin: path.join(data, "bin"), bin: path.join(data, "bin"),
providers: path.join(config, "providers"),
cache, cache,
config, config,
state, state,
@@ -23,7 +22,6 @@ export namespace Global {
await Promise.all([ await Promise.all([
fs.mkdir(Global.Path.data, { recursive: true }), fs.mkdir(Global.Path.data, { recursive: true }),
fs.mkdir(Global.Path.config, { recursive: true }), fs.mkdir(Global.Path.config, { recursive: true }),
fs.mkdir(Global.Path.providers, { recursive: true }),
fs.mkdir(Global.Path.state, { recursive: true }), fs.mkdir(Global.Path.state, { recursive: true }),
]) ])