Excludes `bundle` path.

This commit is contained in:
Krunoslav Zaher 2016-06-08 10:23:59 +02:00
parent e26bce70af
commit 9e2e7abf88
1 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,8 @@ let allowedExtensions = [
let excludedRootPaths = [
".git",
"build",
"Rx.playground"
"Rx.playground",
"bundle"
]
let excludePaths = [
@ -195,4 +196,4 @@ let allValid = try fileManager.contentsOfDirectoryAtPath(".").map { rootDir -> B
if !allValid {
exit(-1)
}
}