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


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