From edbd83c9db407b81037a2f8380cfdc165fa33813 Mon Sep 17 00:00:00 2001 From: Pierre Ayoub Date: Thu, 24 Apr 2025 11:52:53 +0200 Subject: [PATCH] fix(makefile): forgotten mkdir Without creating the `json` directory, the `generate-json-opml` script will fail complaining that `json/XXX.json` does not exists. If the directory is already created, the `mkdir` will silently return. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index dffad24..348713a 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ fetch: subscriptions.curl curl --location --output-dir html --create-dirs --rate 1/s --config subscriptions.curl channel-json: subscriptions.txt + mkdir -p json # nproc is not portable :-/ xargs -n1 --max-procs=$$(nproc) --arg-file subscriptions.txt --verbose ./generate-json-opml -- 2.47.3