add support for non-standard paths in pinneddata.js

This commit is contained in:
ansuz 2019-04-17 16:31:35 +02:00
parent cd793b295d
commit 5a8cd61600

View File

@ -202,6 +202,12 @@ if (!module.parent) {
// if no parent, it is being invoked directly // if no parent, it is being invoked directly
let config = {}; // build the config from command line arguments... let config = {}; // build the config from command line arguments...
var Config = require("../lib/load-config");
config.filePath = Config.filePath;
config.blobPath = Config.blobPath;
config.pinPath = Config.pinPath;
// --unpinned gets the list of unpinned files // --unpinned gets the list of unpinned files
// if you don't pass this, it will list the size of pinned data per user // if you don't pass this, it will list the size of pinned data per user
if (process.argv.indexOf('--unpinned') > -1) { config.unpinned = true; } if (process.argv.indexOf('--unpinned') > -1) { config.unpinned = true; }