aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-11-06 18:45:44 +0100
committerKim Alvefur <zash@zash.se>2021-11-06 18:45:44 +0100
commit4dbcac163337364d34e3e2a05e07d4cb001238f7 (patch)
tree1fadca5272a3059d54e46673f69323267b284ffb /prosodyctl
parent9b980ad640333233d0dc5f66393236a34a1c3543 (diff)
downloadprosody-4dbcac163337364d34e3e2a05e07d4cb001238f7.tar.gz
prosody-4dbcac163337364d34e3e2a05e07d4cb001238f7.zip
prosodyctl: Fix weird indentation
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/prosodyctl b/prosodyctl
index 3fef8801..b2fd3c63 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -19,8 +19,8 @@ CFG_DATADIR=CFG_DATADIR or os.getenv("PROSODY_DATADIR");
local function is_relative(path)
local path_sep = package.config:sub(1,1);
- return ((path_sep == "/" and path:sub(1,1) ~= "/")
- or (path_sep == "\\" and (path:sub(1,1) ~= "/" and path:sub(2,3) ~= ":\\")))
+ return ((path_sep == "/" and path:sub(1,1) ~= "/")
+ or (path_sep == "\\" and (path:sub(1,1) ~= "/" and path:sub(2,3) ~= ":\\")))
end
-- Tell Lua where to find our libraries