Changeset

11521:16caf35f031f

util.prosodyctl.shell: Fix for missing 'sep' arg to string.rep in Lua 5.1
author Kim Alvefur <zash@zash.se>
date Sun, 25 Apr 2021 17:27:02 +0200
parents 11520:0a464a6e88c4
children 11522:5bd38d9197e1
files util/prosodyctl/shell.lua
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/prosodyctl/shell.lua	Sun Apr 25 17:20:58 2021 +0200
+++ b/util/prosodyctl/shell.lua	Sun Apr 25 17:27:02 2021 +0200
@@ -74,7 +74,8 @@
 	if arg[1] then
 		if arg[2] then
 			-- prosodyctl shell module reload foo bar.com --> module:reload("foo", "bar.com")
-			arg[1] = string.format("%s:%s("..string.rep("%q", #arg-2, ", ")..")", table.unpack(arg));
+			-- COMPAT Lua 5.1 doesn't have the separator argument to string.rep
+			arg[1] = string.format("%s:%s("..string.rep("%q, ", #arg-2):sub(1, -3)..")", table.unpack(arg));
 		end
 
 		client.events.add_handler("connected", function()