Fix thing I broke
This commit is contained in:
parent
7c81ba6179
commit
4f487be6ec
1 changed files with 4 additions and 4 deletions
|
@ -55,14 +55,14 @@ elseif parsed.command == "release" then
|
||||||
scopes.wally = values["wally-scope"]
|
scopes.wally = values["wally-scope"]
|
||||||
end
|
end
|
||||||
|
|
||||||
local metadata = fs.metadata(values.to)
|
local metadata = fs.metadata(values.from)
|
||||||
if not metadata.exists or metadata.kind ~= "dir" then
|
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
|
end
|
||||||
|
|
||||||
local fpath = process.cwd
|
local fpath = process.cwd
|
||||||
if values.to ~= process.cwd then
|
if values.from ~= process.cwd then
|
||||||
fpath ..= values.to
|
fpath ..= values.from
|
||||||
end
|
end
|
||||||
|
|
||||||
if flags.dry then
|
if flags.dry then
|
||||||
|
|
Loading…
Reference in a new issue