remove log

This commit is contained in:
dylan 2024-03-27 21:04:24 -07:00
parent 072f342d7f
commit 5efaddb6f0

View File

@ -26,7 +26,7 @@ const execPico = async (args: string[]) => {
export const pico8 = { export const pico8 = {
async export(fileIn: string, fileOut: string) { async export(fileIn: string, fileOut: string) {
try { 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]); return await execPico([fileIn, "-export", fileOut]);
} catch (err) { } catch (err) {
console.log("CAUGHT ERROR", 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); // console.log(result);