lix-website/themes/lix/assets/bootstrap/node_modules/hugo-bin/cli.js
2024-04-26 22:49:34 -06:00

12 lines
216 B
JavaScript
Executable file

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