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"]
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue