1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-10-16 09:54:28 -04:00

Minor lint tweaks. (#69)

This commit is contained in:
XhmikosR
2018-10-07 11:42:52 +03:00
committed by Shun Sato
parent 91ae0484c8
commit ea361afa4a
3 changed files with 10 additions and 10 deletions

2
cli.js
View File

@@ -1,8 +1,8 @@
#!/usr/bin/env node
const spawn = require('child_process').spawn;
const hugo = require('.');
const input = process.argv.slice(2);
const hugo = require('./');
spawn(hugo, input, {stdio: 'inherit'})
.on('exit', process.exit);