RSS Git Download  Clone
Raw View History
Blames found: 13 Mode: javascript Binary: false


Hang on, we reloading big blames...
const { program } = require('commander');
// install
program
.command('save <uid>')
.description(`
Save the p3x-ramdisk
`)
// .option('-d, --dry', 'Do not actually remove packages, just show what it does')
.action(async function (uid, options) {
const save = require('../index').save; try {
await save({ uid: uid });
} catch (e) {
console.error(e.message); process.exit(1); } }) ;