Fixes in build system...

This commit is contained in:
BurnyLlama 2023-08-04 20:14:57 +02:00
parent 7a7b894bd5
commit 0dc5cb2bc1
2 changed files with 2 additions and 2 deletions

View File

@ -61,6 +61,7 @@ export default function buildNebulosa(debug) {
} }
// If the file is run directly from the commandline, build Nebulosa. // If the file is run directly from the commandline, build Nebulosa.
if (import.meta.url === `file://${process.argv[0]}`) { if (import.meta.url === `file://${process.argv[1]}`) {
log("Building Nebulosa...")
buildNebulosa(false) buildNebulosa(false)
} }

View File

@ -32,7 +32,6 @@ function flattenObject(object) {
export default function parseTemplate(template, data) { export default function parseTemplate(template, data) {
const flattenedData = flattenObject(data) const flattenedData = flattenObject(data)
log("Loaded config:")
return template return template
// Syntax: {{ variableName }} // Syntax: {{ variableName }}