mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-27 02:18:27 -04:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const spawn = require('child_process').spawn;
|
|
const input = process.argv.slice(2);
|
|
const bin = require('./');
|
|
|
|
spawn(bin, input, {stdio: 'inherit'})
|
|
.on('exit', process.exit);
|