summaryrefslogtreecommitdiff
path: root/scripts/context/lua/mtx-colors.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/context/lua/mtx-colors.lua')
-rw-r--r--scripts/context/lua/mtx-colors.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/context/lua/mtx-colors.lua b/scripts/context/lua/mtx-colors.lua
index 7dd1b4ac4..1c3f8cf82 100644
--- a/scripts/context/lua/mtx-colors.lua
+++ b/scripts/context/lua/mtx-colors.lua
@@ -61,7 +61,14 @@ function scripts.colors.table()
end
end
else
- report("no file(s) given" )
+ local files = resolvers.findfiles("*.icc")
+ if #files > 0 then
+ for i=1,#files do
+ report(files[i])
+ end
+ else
+ report("no file(s) given" )
+ end
end
end