summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-04-20 14:37:54 +1000
committerAdriaan Moors <adriaan.moors@typesafe.com>2015-04-21 10:16:58 -0700
commit93e03d479def518697f052cfdab34cdbab991f29 (patch)
treee31bbb1de3cf63d7164b3f75da932265fb19134d /.gitignore
parent0d5ff65499a16ed1004bbdf7f204995082ab5dd0 (diff)
downloadscala-93e03d479def518697f052cfdab34cdbab991f29.tar.gz
scala-93e03d479def518697f052cfdab34cdbab991f29.tar.bz2
scala-93e03d479def518697f052cfdab34cdbab991f29.zip
Avoid wildcard ignorance of files named 'target'.
In favour of explicitly ignoring the ones we know contain SBT build output. Rationale: we used to have a package named target. Admittedly we thought better of that (55109d0d253) so it is now called `meta`, but let's not get lazy and encode a poor practice into our gitignore.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index e3bc794f08..d6571a377f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -50,5 +50,7 @@
/qbin
# Sbt's target directories
-**/target/
+/target/
+/project/target/
+/project/project/target
/build-sbt/