relative folder
parent
f6cc07750e
commit
f96e213337
File diff suppressed because one or more lines are too long
|
@ -25,6 +25,7 @@ class Cache {
|
||||||
}
|
}
|
||||||
|
|
||||||
static async save() {
|
static async save() {
|
||||||
|
console.log(`saving to ${Unity.libraryFolder}`);
|
||||||
await tc.cacheDir(Unity.libraryFolder, 'library', this.libraryKey);
|
await tc.cacheDir(Unity.libraryFolder, 'library', this.libraryKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
|
import Input from './input';
|
||||||
|
|
||||||
class Unity {
|
class Unity {
|
||||||
static get libraryFolder() {
|
static get libraryFolder() {
|
||||||
return 'Library';
|
const { projectPath } = Input.getFromUser();
|
||||||
|
return `${projectPath}/'Library'`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue