aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2024-02-19 14:14:43 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-02-19 19:34:40 -0300
commitbb8df68c109bb860df57563d51003034a57bf7e1 (patch)
treeaa727315a879ebc246bc889a206549a9013cc610 /src
parent4e1376fa8840f0055dab5c0e7dbcd8cc1c281b6d (diff)
downloadluarocks-bb8df68c109bb860df57563d51003034a57bf7e1.tar.gz
luarocks-bb8df68c109bb860df57563d51003034a57bf7e1.tar.bz2
luarocks-bb8df68c109bb860df57563d51003034a57bf7e1.zip
fix(config): print boolean values correctly on Lua 5.1
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/cmd/config.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/luarocks/cmd/config.lua b/src/luarocks/cmd/config.lua
index 0e7a3e3d..a01d33a9 100644
--- a/src/luarocks/cmd/config.lua
+++ b/src/luarocks/cmd/config.lua
@@ -219,7 +219,11 @@ local function write_entries(keys, scope, do_unset)
219 if do_unset then 219 if do_unset then
220 print(("\t%s"):format(var)) 220 print(("\t%s"):format(var))
221 else 221 else
222 print(("\t%s = %q"):format(var, val)) 222 if type(val) == "string" then
223 print(("\t%s = %q"):format(var, val))
224 else
225 print(("\t%s = %s"):format(var, tostring(val)))
226 end
223 end 227 end
224 end 228 end
225 print(do_unset and "from" or "to") 229 print(do_unset and "from" or "to")