dont print eval result

This commit is contained in:
Chris Wanstrath 2025-11-09 19:45:02 -08:00
parent 84001bf67f
commit 4645447116

View File

@ -65,8 +65,8 @@ async function main() {
try { mkdirSync('/tmp/shrimp') } catch { }
const path = `/tmp/shrimp/${randomUUID()}.sh`
writeFileSync(path, code)
console.log(await runFile(path))
writeFileSync(path, fullCode)
await runFile(path)
return
}