16 lines
345 B
Text
16 lines
345 B
Text
--!strict
|
|
local release = require("./release")
|
|
local sync = require("./sync")
|
|
|
|
local res = sync("jecs")
|
|
if not res.ok then
|
|
print(`Can't continue: {res.err}`)
|
|
return
|
|
end
|
|
|
|
if res.val == false then
|
|
print(`No changes made. Aborting.`)
|
|
return
|
|
end
|
|
|
|
release("jecs", { pesde = "marked/jecs_nightly", wally = "mark-marks/jecs-nightly" })
|