changeset 2123:2d8950cbb0e7 default tip

remove ignore_there
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 09 Jan 2026 10:05:21 -0700
parents ce75c0136e28
children
files src/luan/modules/host/Hosting.luan
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/luan/modules/host/Hosting.luan	Wed Jan 07 14:00:43 2026 -0700
+++ b/src/luan/modules/host/Hosting.luan	Fri Jan 09 10:05:21 2026 -0700
@@ -20,9 +20,6 @@
 local ignore_here = {
 	[".DS_Store"] = true
 }
-local ignore_there = {
-	[".well-known"] = true
-}
 
 function Hosting.push(domain,password,dir)
 	local my_dir = Io.uri("file:"..dir)
@@ -56,7 +53,7 @@
 				end
 			end
 			for _, there_child in pairs(there.children) do
-				if ignore_there[there_child.name]==nil and host.delete_unused(domain,password,there_child.path) then
+				if host.delete_unused(domain,password,there_child.path) then
 					print("deleted "..here.to_string().."/"..there_child.name)
 				end
 			end