From 9e2e7abf886dc294b1a1ef8b8e20f2a0db492b73 Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Wed, 8 Jun 2016 10:23:59 +0200 Subject: [PATCH] Excludes `bundle` path. --- scripts/validate-headers.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/validate-headers.swift b/scripts/validate-headers.swift index 377cc55b..9374aac3 100755 --- a/scripts/validate-headers.swift +++ b/scripts/validate-headers.swift @@ -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) -} \ No newline at end of file +}