From 47108dacce4598387c0e49337329587f5046e8c1 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Mon, 16 Jun 2025 12:17:09 +0200 Subject: [PATCH] Print stdout in os_exec_win --- base/tools/amake/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/base/tools/amake/main.c b/base/tools/amake/main.c index 9bd39aa3..28d7a024 100644 --- a/base/tools/amake/main.c +++ b/base/tools/amake/main.c @@ -76,6 +76,7 @@ static JSValue js_os_exec_win(JSContext *ctx, JSValue this_val, int argc, JSValu CloseHandle(pi.hProcess); CloseHandle(pi.hThread); + printf("%s", buf); return JS_NewString(ctx, buf); }