Forward pesde & wally stdout & stderr
This commit is contained in:
parent
0651d033ed
commit
7d7aa8de33
2 changed files with 22 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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")}`)
|
||||
|
|
Loading…
Reference in a new issue