From 3acb9653caae6ffc4cc7973699134c60bedc21b1 Mon Sep 17 00:00:00 2001
From: Nate Bosch <nbosch1@gmail.com>
Date: Mon, 27 Mar 2017 15:42:41 -0700
Subject: [PATCH] Don't ignore test/build/ directory (#1547)

The current ignore is too broach and matches some of the tests. A
leading slash makes the ignore only match a build directory at the root
of the repo
---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index ff038084..35f7bb93 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,7 @@
 .idea
 .pub/
 .settings/
-build/
+/build/
 packages
 /.packages
 pubspec.lock
-- 
GitLab