Skip to content

Commit

Permalink
Fix build error for Xcode 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mono0926 committed Apr 6, 2020
1 parent 9bba790 commit 2718bb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/LicensePlistCore/Entity/GitHubLibraryConfigFile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ public struct GitHubLibraryConfigFile: Equatable {
}

extension GitHubLibraryConfigFile {
static func carthage(content: String?) -> GitHubLibraryConfigFile { .init(type: .carthage, content: content) }
static func mint(content: String?) -> GitHubLibraryConfigFile { .init(type: .mint, content: content) }
static func licensePlist(content: String?) -> GitHubLibraryConfigFile { .init(type: .licensePlist, content: content) }
static func carthage(content: String?) -> GitHubLibraryConfigFile { return .init(type: .carthage, content: content) }
static func mint(content: String?) -> GitHubLibraryConfigFile { return .init(type: .mint, content: content) }
static func licensePlist(content: String?) -> GitHubLibraryConfigFile { return .init(type: .licensePlist, content: content) }
}

public enum GitHubLibraryConfigFileType: Int, CaseIterable {
Expand Down

0 comments on commit 2718bb4

Please sign in to comment.