From f4514742623cbb780342310c462c1171b04817e1 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Fri, 3 Mar 2023 10:01:24 +0100 Subject: [PATCH] Ignore /var in output This will serve as storage for other stuff, so we can serve something else than the blog. There cannot be a .gitignore in output/, since that directory gets re-generated as a whole. (I could probably convince Pelican to always put it there, but that seems more fragile than to hardcode it in repo root.) --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 785917d..0a8de14 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ __pycache__/ env/ .* !.gitignore + +/output/var