Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
9e17703ebbfcd7d1a84b9b80f3bed5da2d970e5d
Branches
master
Files
Commits
Log
Graph
Stats
ramdisk.git
src
command
link.js
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 7
Mode: javascript
Binary: false
Hang on, we reloading big blames...
a7998c18
const commander = require('commander'); // install commander
f9a09ec6
.command('link <uid>')
a7998c18
.description(` Link from the ramdisk to the home `) // .option('-d, --dry', 'Do not actually remove packages, just show what it does')
f9a09ec6
.action(async function (uid, options) {
a7998c18
const link = require('../index').link; try {
f9a09ec6
await link({ uid: uid });
a7998c18
} catch(e) { console.error(e.message); process.exit(1); } }) ;