From 684145ebebe9ed6c571fac8293d32ae2fb7d4605 Mon Sep 17 00:00:00 2001 From: Masayuki Ono Date: Thu, 4 May 2017 16:08:30 +0900 Subject: [PATCH] Fix miss --- Sources/LicensePlistCore/LicensePlist.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/LicensePlistCore/LicensePlist.swift b/Sources/LicensePlistCore/LicensePlist.swift index 237a119f..4b5a4521 100644 --- a/Sources/LicensePlistCore/LicensePlist.swift +++ b/Sources/LicensePlistCore/LicensePlist.swift @@ -54,7 +54,7 @@ public final class LicensePlist { Log.info("Carthage License collect start") var gitHubLibraries: [GitHub] = config?.githubs ?? [] - gitHubLibraries.forEach { Log.warning("\($0.name) is loaded from config yaml.") } + gitHubLibraries.forEach { Log.warning("\($0.name) was loaded from config yaml.") } if let cartfileContent = readCartfile(path: cartfilePath) { gitHubLibraries += GitHub.parse(cartfileContent) }