fix picodat file path

This commit is contained in:
dylan
2024-03-31 14:08:48 -07:00
parent b12ec78941
commit 7395ed4677
4 changed files with 4 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ const outputDirPath = path.resolve(__dirname, "..", "..", "..", "output");
const getRom = async (inputFile: string) => {
const uuid = randomUUID();
const dir = path.join(outputDirPath, uuid);
const outputFile = path.join(dir, inputFile+".js");
const outputFile = path.join(dir, "output.js");
await shrinko8({
inputFile,