From 7d7aa8de337f1176d2c3db573672749a601b4fe1 Mon Sep 17 00:00:00 2001 From: marked Date: Sun, 2 Mar 2025 16:11:32 +0100 Subject: [PATCH] Forward pesde & wally stdout & stderr --- src/init.luau | 2 +- src/release.luau | 25 +++++++++++++++++++++---- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/src/init.luau b/src/init.luau index 2cd1046..edf368a 100644 --- a/src/init.luau +++ b/src/init.luau @@ -4,7 +4,7 @@ local sync = require("./sync") local res = sync("jecs") if not res.ok then - print(`Can't continue: {res.err}`) + print(`Syncing failed, aborting.`) return end diff --git a/src/release.luau b/src/release.luau index 7499d5d..37408bc 100644 --- a/src/release.luau +++ b/src/release.luau @@ -130,22 +130,39 @@ local function release(origin: string, scopes: { wally: string, pesde: string }, local cwd = process.cwd .. origin + local res_pesde if not dry then - process.spawn("pesde", { "publish", "-y" }, { cwd = cwd }) + res_pesde = process.spawn("pesde", { "publish", "-y" }, { cwd = cwd }) else - process.spawn("pesde", { "publish", "-d", "-y" }, { cwd = cwd }) + res_pesde = process.spawn("pesde", { "publish", "-d", "-y" }, { cwd = cwd }) + end + + if not res_pesde.ok then + progress:stop() + print(`-- Pesde error:\nstdout\n{res_pesde.stdout}\nstderr\n{res_pesde.stderr}`) + return result(false, `Pesde error:\nstdout\n{res_pesde.stdout}\nstderr\n{res_pesde.stderr}`) end progress:nextStage() + local res_wally if not dry then - process.spawn("wally", { "publish" }, { cwd = cwd }) + res_wally = process.spawn("wally", { "publish" }, { cwd = cwd }) else - process.spawn("wally", { "package", "--output", "wally.tar.gz" }, { cwd = cwd }) + res_wally = process.spawn("wally", { "package", "--output", "wally.tar.gz" }, { cwd = cwd }) + end + + if not res_wally.ok then + progress:stop() + print(`-- Wally error:\nstdout\n{res_wally.stdout}\nstderr\n{res_wally.stderr}`) + return result(false, `Wally error:\nstdout\n{res_wally.stdout}\nstderr\n{res_wally.stderr}`) end progress:stop() + print(`-- Pesde out:\nstdout\n{res_pesde.stdout}\nstderr\n{res_pesde.stderr}`) + print(`-- Wally out:\nstdout\n{res_wally.stdout}\nstderr\n{res_wally.stderr}`) + local took = round_to((os.clock() - begin) * 1_000, 2) if not dry then print(`🚀 Published packages {stdio.style("dim")}(took {took}ms){stdio.style("reset")}`)