# HG changeset patch # User Kim Alvefur # Date 1636220744 -3600 # Node ID 248477e45c64ddc55d4c8efe2150b0aa16b4fca9 # Parent 97aa4b2fe4e0161eb319c2310ed3c3de1078cbc3 prosodyctl: Fix weird indentation diff -r 97aa4b2fe4e0 -r 248477e45c64 prosodyctl --- a/prosodyctl Wed Nov 03 14:36:58 2021 +0100 +++ b/prosodyctl Sat Nov 06 18:45:44 2021 +0100 @@ -19,8 +19,8 @@ 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