aboutsummaryrefslogtreecommitdiff
path: root/src/luarocks/install.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/luarocks/install.lua')
-rw-r--r--src/luarocks/install.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/install.lua b/src/luarocks/install.lua
index 24f1accd..e7e6bb20 100644
--- a/src/luarocks/install.lua
+++ b/src/luarocks/install.lua
@@ -180,7 +180,7 @@ function install.run(...)
180 if not ok then return nil, err end 180 if not ok then return nil, err end
181 local name, version = ok, err 181 local name, version = ok, err
182 if (not flags["only-deps"]) and (not flags["keep"]) and not cfg.keep_other_versions then 182 if (not flags["only-deps"]) and (not flags["keep"]) and not cfg.keep_other_versions then
183 local ok, err = remove.remove_other_versions(name, version, flags["force"]) 183 local ok, err = remove.remove_other_versions(name, version, flags["force"], flags["force-fast"])
184 if not ok then util.printerr(err) end 184 if not ok then util.printerr(err) end
185 end 185 end
186 return name, version 186 return name, version