Skip to content

Commit

Permalink
Update to 1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Jul 11, 2018
1 parent 651091d commit ed701a0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Master

## 1.10.3

#### Fixed
- Fixed Mint installations finding `SettingPresets` [338](https://github.com/yonaskolb/XcodeGen/pull/338) @yonaskolb

[Commits](https://github.com/yonaskolb/XcodeGen/compare/1.10.2...1.10.3)

## 1.10.2

#### Changed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 1.10.2
VERSION = 1.10.3

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ProjectSpec
import XcodeGenKit
import xcproj

let version = "1.10.2"
let version = "1.10.3"

func generate(spec: String, project: String, isQuiet: Bool, justVersion: Bool) {
if justVersion {
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGenKit/SettingsBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ extension SettingsPresetFile {
if let symlink = try? (bundlePath + "xcodegen").symlinkDestination() {
possibleSettingsPaths = [
symlink.parent() + relativePath,
] + possibleSettingsPaths
] + possibleSettingsPaths
}

guard let settingsPath = possibleSettingsPaths.first(where: { $0.exists }) else {
Expand Down

0 comments on commit ed701a0

Please sign in to comment.