try pico8_dyn

This commit is contained in:
dylan 2024-03-27 21:09:47 -07:00
parent f861db0b43
commit 34fb9b92bf

View File

@ -5,7 +5,7 @@ import {execFile} from "child_process";
const __dirname = fileURLToPath(new URL('.', import.meta.url));
const picoDirPath = path.resolve(__dirname, "..", "..", "..", "pico8");
const picoBinPath = path.resolve(picoDirPath, "pico8");
const picoBinPath = path.resolve(picoDirPath, "pico8_dyn");
const cmd = (cmd: string, args: string[], options = {}) => {
return new Promise((resolve, reject) => {