From cb33b6dcadb670ff8e2139f16fb43076feac2833 Mon Sep 17 00:00:00 2001 From: orbifx Date: Tue, 21 Jun 2022 16:07:31 +0100 Subject: [PATCH] Tilde compatible publication dirs, public_*/txt --- cli/publish.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/publish.ml b/cli/publish.ml index 29b1c82..0e39ac8 100644 --- a/cli/publish.ml +++ b/cli/publish.ml @@ -6,9 +6,9 @@ let targets () = List.filter (fun x -> try Sys.is_directory (snd x) with Sys_error _ -> false) [ - "htm", home ^ "/public/html"; - "gmi", home ^ "/public/gemini"; - "", home ^ "/public/gopher"; + "htm", home ^ "/public_html/txt"; + "gmi", home ^ "/public_gemini/txt"; + "", home ^ "/public_gopher/txt"; ] open Logarion