Skip to content

Commit

Permalink
Fix Linux (#615)
Browse files Browse the repository at this point in the history
* remove objc

* update changelog
  • Loading branch information
yonaskolb authored May 18, 2021
1 parent be702b9 commit fd0d3d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Allows passing BuildableIdentifier String to BuildableReference initializer [#605](https://github.com/tuist/XcodeProj/pull/605) by [@freddi-kit](https://github.com/freddi-kit)

### Fixed

- Fixed building on Linux [#615](https://github.com/tuist/XcodeProj/pull/615) by [@yonaskolb](https://github.com/yonaskolb)

## 7.22.0 - Ringui Dingui

### Added
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeProj/Scheme/XCScheme+SerialAction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extension XCScheme {

// MARK: - Equatable

@objc dynamic func isEqual(to: Any?) -> Bool {
func isEqual(to: Any?) -> Bool {
guard let rhs = to as? SerialAction else { return false }
return preActions == rhs.preActions &&
postActions == rhs.postActions
Expand Down

0 comments on commit fd0d3d5

Please sign in to comment.