Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
1fcb4f92ba9737c42a63b3cc11e923aedc885a17
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: 13
Mode: javascript
Binary: false
Hang on, we reloading big blames...
7ae7aa94
const { program } = require('commander');
a7998c18
// install
7ae7aa94
program
f9a09ec6
.command('link <uid>')
a7998c18
.description(`
7ae7aa94
Link from the ramdisk to the home
a7998c18
`)
724156a2
// .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 });
724156a2
} catch (e) {
a7998c18
console.error(e.message); process.exit(1); } }) ;