mkdirs
Some checks failed
Build Dusk / build-linux (push) Has been cancelled
Build Dusk / build-psp (push) Has been cancelled
Build Dusk / run-tests (push) Has been cancelled

This commit is contained in:
2026-02-03 13:18:32 -06:00
parent c862071126
commit 2c83e4ba9f
2 changed files with 2 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ function sceneRender()
camera.bottom = screenGetHeight()
camera.right = screenGetWidth()
width, height = textMeasure(text)
width, height = textMeasure(text)1
x = (screenGetWidth() - width)
x = math.sin(TIME.time * 2) * (x / 2) + (x / 2)

View File

@@ -100,5 +100,6 @@ for line in luaScript.splitlines():
outHeader = outHeader.rstrip(" \\\n") + "\n" # Remove last backslash and add newline
# Write to output file
os.makedirs(os.path.dirname(args.output), exist_ok=True)
with open(args.output, "w", encoding="utf-8") as outFile:
outFile.write(outHeader)