From 3766d49926771f754bcd255c9e82102cbbe6ce01 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Tue, 5 Jan 2016 13:05:58 +0300 Subject: luarocks make: ignore 'rockspec' directory when no argument given Without an argument luarocks make looks if there is only one rockspec in the current directory. Consider only files as potential rockspec to avoid strange error when current directory contains a directory ending with 'rockspec'. --- src/luarocks/make.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/luarocks/make.lua b/src/luarocks/make.lua index 1dfe6473..4f70bafe 100644 --- a/src/luarocks/make.lua +++ b/src/luarocks/make.lua @@ -54,7 +54,7 @@ function make.run(...) if not rockspec then for file in fs.dir() do - if file:match("rockspec$") then + if file:match("rockspec$") and fs.is_file(file) then if rockspec then return nil, "Please specify which rockspec file to use." else -- cgit v1.2.3-55-g6feb