diff --git a/bin/shrimp b/bin/shrimp index d26ec68..f75e6b2 100755 --- a/bin/shrimp +++ b/bin/shrimp @@ -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 }