Skip to content

Commit

Permalink
Change 'xcodeproj' dependency url
Browse files Browse the repository at this point in the history
  • Loading branch information
timbaev committed Aug 12, 2019
1 parent ba6b311 commit 9d4c6af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@
},
{
"package": "XcodeProj",
"repositoryURL": "https://github.com/tuist/xcodeproj.git",
"repositoryURL": "https://github.com/timbaev/xcodeproj.git",
"state": {
"branch": null,
"revision": "b951777f42e9acbfb8f19da623b43aaa604422f9",
"version": "7.0.0"
"revision": "1c3074601a65f72f3aced9686329eb9f4fc52c08",
"version": "7.0.1"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "LocalizedGenStrings",
dependencies: [
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.0.0")),
.package(url: "https://github.com/timbaev/xcodeproj.git", .upToNextMajor(from: "7.0.1")),
.package(url: "https://github.com/kylef/Commander.git", from: "0.9.0"),
.package(url: "https://github.com/IBDecodable/IBDecodable.git", from: "0.0.4")
],
Expand Down
2 changes: 1 addition & 1 deletion Sources/LocalizedGenStringsCore/Writer/DefaultWriter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class DefaultWriter: Writer {
if let existsLocalizableGroup = mainProjectGroup.group(named: Constants.generatedFilename) as? PBXVariantGroup {
localizableGroup = existsLocalizableGroup
} else {
localizableGroup = try mainProjectGroup.addVariantGroup(named: Constants.generatedFilename, options: .withoutFolder).first!
localizableGroup = try mainProjectGroup.addVariantGroup(named: Constants.generatedFilename).first!
}

try localizableGroup.addFile(at: localizableFilePath, sourceRoot: xcodeProjPath.parent())
Expand Down

0 comments on commit 9d4c6af

Please sign in to comment.