Skip to content

Commit

Permalink
Merge pull request #208 from xcodeswift/ks/cli-extension
Browse files Browse the repository at this point in the history
Change CLI fileExtension to nil
  • Loading branch information
Keith Smiley authored Jan 2, 2018
2 parents 71bd0ca + 364970e commit 96fe834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Fixed
- Fix Xcode 9.2 warning https://github.com/xcodeswift/xcproj/pull/209 by @keith
- macOS CLI targets now have a nil extension, instead of an empty string https://github.com/xcodeswift/xcproj/pull/208 by @keith

## 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion Sources/xcproj/PBXProductType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public enum PBXProductType: String, Decodable {
case .appExtension, .tvExtension, .watchExtension, .watch2Extension, .messagesExtension, .stickerPack, .xcodeExtension:
return "appex"
case .commandLineTool:
return ""
return nil
case .xpcService:
return "xpc"
case .ocUnitTestBundle:
Expand Down

0 comments on commit 96fe834

Please sign in to comment.