From eea47e04c52e65e0c8e990d97d56a16bf9049160 Mon Sep 17 00:00:00 2001 From: sladecraven Date: Mon, 1 Feb 2021 18:27:27 +0100 Subject: [PATCH] Initial import --- stl_thumb_generator.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/stl_thumb_generator.lua b/stl_thumb_generator.lua index 65b4ac1..d75aef8 100644 --- a/stl_thumb_generator.lua +++ b/stl_thumb_generator.lua @@ -7,6 +7,7 @@ local function parse_one_level( path ) for myfile in lfs.dir(path) do local attr = lfs.attributes (myfile) if attr.mode == "directory" then + print("Entering sub folder : ", myfile) parse_one_level( myfile) elseif string.match(myfile, "%.stl") or string.match(myfile, "%.STL") then print("Thumbnail for : ", myfile)