From e21dcc582d0132ce33082e07a5473dafed9eca24 Mon Sep 17 00:00:00 2001 From: glowinthedark <48893368+glowinthedark@users.noreply.github.com> Date: Tue, 1 Sep 2026 11:37:59 +0200 Subject: [PATCH] (make) fix missing LANG folder (make) `make package-all` fails if new languages are added and the corresponding `data/$(LANG)` folder does not exist -- this change creates the folder automatically --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 830dc46..7d868f3 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,7 @@ download: package: # Packaging $(LANG) + mkdir -p v4/dicts/$(LANG) go run cmd/simplify/simplify.go data/$(LANG) data/$(LANG).gz go run cmd/genpack/genpack.go -locale $(LANG) -path data/$(LANG).gz > v4/dicts/$(LANG)/pack.go # ----------------