From f58ff1785ae52a3c71c2635a8802b6de655e48d8 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 9 Nov 2025 19:45:02 -0800 Subject: [PATCH] dont print eval result --- bin/shrimp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }