From f081dcf7150f9f50a3487aee9ea29700e0e345c0 Mon Sep 17 00:00:00 2001 From: Wyatt Anderson Date: Wed, 15 Dec 2021 17:46:28 +0000 Subject: [PATCH] Update .dockerignore to ensure glyphs are included [why] This fixes the Docker image build after changes in 9633b4d moved PowerlineSymbols.otf into a subdirectory. Previously, the .dockerignore line for src/glyphs/*.* would exclude any subdirectories in src/glyphs from being included. Without this change, a complete font build fails. --- .dockerignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index d0693ab88..6d9834014 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,4 @@ ** -!src/glyphs/*.* +!src/glyphs !font-patcher !bin/scripts/docker-entrypoint.sh