From 91d4506b37fc763b73f850664133fb19f0740ae7 Mon Sep 17 00:00:00 2001 From: Erin Call Date: Fri, 22 May 2020 17:15:24 -0700 Subject: [PATCH] Ignore build/* [#93] I definitely thought this rule was already in effect--I had a `build/.gitignore` that contained just `*`. Unfortunately, that makes git ignore the .gitignore file itself, so it was never added to the repo... --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7205b04..368aae7 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,5 @@ # vendor/ .env .secrets + +build/*