From 7681d2189a3366698f5ed56b24ecdd4a59071b0e Mon Sep 17 00:00:00 2001 From: Ilias Stamatis Date: Tue, 1 Aug 2017 13:36:18 +0300 Subject: [PATCH] Issue 86 - add build dir to gitignore Description: Add the build dir that is created after running "make build" to .gitignore. https://pagure.io/lib389/issue/86 Author: Ilias95 Review by: ??? --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 941126e..ae200f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ # Log directory # ################### logs/ +build/ *.pyc *.patch .cache .tox -*.egg-info \ No newline at end of file +*.egg-info -- 2.13.3