Merge pull request #1305 from neersighted/patch-1

Also ignore extern(al)
This commit is contained in:
Arfon Smith
2014-06-23 23:12:34 +01:00
2 changed files with 5 additions and 0 deletions

View File

@@ -43,6 +43,7 @@
# Vendored dependencies
- thirdparty/
- vendors?/
- extern(al)?/
# Debian packaging
- ^debian/

View File

@@ -277,6 +277,10 @@ class TestBlob < Test::Unit::TestCase
# 'thirdparty' directory
assert blob("thirdparty/lib/main.c").vendored?
# 'extern(al)' directory
assert blob("extern/util/__init__.py").vendored?
assert blob("external/jquery.min.js").vendored?
# C deps
assert blob("deps/http_parser/http_parser.c").vendored?