Fix thing I broke

This commit is contained in:
marked 2025-03-02 18:54:40 +01:00
parent 7c81ba6179
commit 4f487be6ec

View file

@ -55,14 +55,14 @@ elseif parsed.command == "release" then
scopes.wally = values["wally-scope"]
end
local metadata = fs.metadata(values.to)
local metadata = fs.metadata(values.from)
if not metadata.exists or metadata.kind ~= "dir" then
error(`The path {values.to} doesn't exist or isn't a valid directory.`)
error(`The path {values.from} doesn't exist or isn't a valid directory.`)
end
local fpath = process.cwd
if values.to ~= process.cwd then
fpath ..= values.to
if values.from ~= process.cwd then
fpath ..= values.from
end
if flags.dry then