diff --git a/src/server/util/pico8.ts b/src/server/util/pico8.ts index 020c2ec..6029796 100644 --- a/src/server/util/pico8.ts +++ b/src/server/util/pico8.ts @@ -26,7 +26,7 @@ const execPico = async (args: string[]) => { export const pico8 = { async export(fileIn: string, fileOut: string) { try { - console.log((await cmd("ls", ["-la", "/app/pico8"]) as any).stdout) + // console.log((await cmd("ls", ["-la", "/app/pico8"]) as any).stdout) return await execPico([fileIn, "-export", fileOut]); } catch (err) { console.log("CAUGHT ERROR", err); @@ -34,5 +34,5 @@ export const pico8 = { } } -// const result = await pico8.export("/home/dylan/.lexaloffle/pico-8/carts/candles/candles.p8", "/home/dylan/repos/picobook/sample.js"); +// const result = await pico8.export("/home/dylan/.lexaloffle/pico-8/carts/my-pico-project/mygame.p8", "/home/dylan/repos/picobook/sample.js"); // console.log(result); \ No newline at end of file