From 67083ce70d41bf4004c7a8326953bab8a94cc986 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Fri, 3 Aug 2012 12:18:45 +1000 Subject: [PATCH] Make CakePHP ignore config folder of either case This takes the change from #339 and makes it case insensitive so that CakePHP projects from both before and after the rename ignore the appropriate files. --- CakePHP.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CakePHP.gitignore b/CakePHP.gitignore index 9fbdf358..61d34467 100644 --- a/CakePHP.gitignore +++ b/CakePHP.gitignore @@ -1,7 +1,7 @@ tmp/* -Config/core.php -Config/database.php +[Cc]onfig/core.php +[Cc]onfig/database.php app/tmp/* -app/Config/core.php -app/Config/database.php +app/[Cc]onfig/core.php +app/[Cc]onfig/database.php !empty \ No newline at end of file