mirror of
https://github.com/osmarks/website
synced 2025-05-16 22:34:07 +00:00
fix spacing
This commit is contained in:
parent
fc8688ff97
commit
f7a63d5cd3
@ -174,7 +174,9 @@ globalData.renderDate = date => date.format("DD/MM/YYYY")
|
|||||||
|
|
||||||
const runOpenring = async () => {
|
const runOpenring = async () => {
|
||||||
// wildly unsafe but only runs on input from me anyway
|
// wildly unsafe but only runs on input from me anyway
|
||||||
const out = await util.promisify(childProcess.exec)(`./openring -n6 ${globalData.feeds.map(x => "-s " + x).join(" ")} < openring.html`)
|
const arg = `./openring -n6 ${globalData.feeds.map(x => '-s "' + x + '"').join(" ")} < openring.html`
|
||||||
|
console.log(arg)
|
||||||
|
const out = await util.promisify(childProcess.exec)(arg)
|
||||||
console.log(out.stderr)
|
console.log(out.stderr)
|
||||||
return out.stdout
|
return out.stdout
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user