mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl: Use correct separator in chown call (fixes #1093)
This commit is contained in:
parent
6210465091
commit
f7bf94cd03
1 changed files with 1 additions and 1 deletions
|
@ -868,7 +868,7 @@ local function copy(from, to, umask, owner, group)
|
|||
assert(input:close());
|
||||
assert(output:close());
|
||||
if owner and group then
|
||||
local ok = os.execute(("chown %s.%s %s"):format(sh_esc(owner), sh_esc(group), sh_esc(to)));
|
||||
local ok = os.execute(("chown %s:%s %s"):format(sh_esc(owner), sh_esc(group), sh_esc(to)));
|
||||
assert(ok == true or ok == 0, "Failed to change ownership of "..to);
|
||||
end
|
||||
if old_umask then pposix.umask(old_umask); end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue