1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-12 08:45:27 -04:00

Rename variables

This commit is contained in:
XhmikosR
2023-05-17 08:15:38 +03:00
parent 1e4307eaf9
commit e69a92ad0e
5 changed files with 19 additions and 18 deletions
+2 -2
View File
@@ -2,9 +2,9 @@
import { spawn } from 'node:child_process';
import process from 'node:process';
import hugo from '../index.js';
import hugoPath from '../index.js';
const input = process.argv.slice(2);
spawn(hugo, input, { stdio: 'inherit' })
spawn(hugoPath, input, { stdio: 'inherit' })
.on('exit', process.exit);