From c735940fc3a0ee92d0b2d98a2b4470b6adc4f866 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sun, 25 Oct 2015 13:27:59 +0300 Subject: [PATCH] Remove an unused variable --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index 51b4e17..556b947 100755 --- a/hererocks.py +++ b/hererocks.py @@ -269,7 +269,7 @@ def install_lua(target_dir, lua_version, is_luajit, lua_target, compat, temp_dir run_command("make install", "INSTALL_TOP=" + quote(target_dir)) def install_luarocks(target_dir, luarocks_version, temp_dir): - luarocks_path = fetch(luarocks_versions, luarocks_version, temp_dir) + fetch(luarocks_versions, luarocks_version, temp_dir) if not os.path.exists(target_dir): os.makedirs(target_dir)