mirror of
https://github.com/KevinMidboe/linguist.git
synced 2026-01-02 07:26:18 +00:00
Merge pull request #561 from assassini/master
Added an exclusion pattern for a "dependencies" folder in the root directory
This commit is contained in:
@@ -12,6 +12,9 @@
|
|||||||
# Caches
|
# Caches
|
||||||
- cache/
|
- cache/
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
- ^[Dd]ependencies/
|
||||||
|
|
||||||
# C deps
|
# C deps
|
||||||
# https://github.com/joyent/node
|
# https://github.com/joyent/node
|
||||||
- ^deps/
|
- ^deps/
|
||||||
|
|||||||
@@ -210,6 +210,9 @@ class TestBlob < Test::Unit::TestCase
|
|||||||
assert !blob("Text/README").vendored?
|
assert !blob("Text/README").vendored?
|
||||||
assert !blob("ext/extconf.rb").vendored?
|
assert !blob("ext/extconf.rb").vendored?
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
assert blob("dependencies/windows/headers/GL/glext.h").vendored?
|
||||||
|
|
||||||
# Node dependencies
|
# Node dependencies
|
||||||
assert blob("node_modules/coffee-script/lib/coffee-script.js").vendored?
|
assert blob("node_modules/coffee-script/lib/coffee-script.js").vendored?
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user