mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
10 lines
219 B
Swift
10 lines
219 B
Swift
import Foundation
|
|
import PathKit
|
|
|
|
extension Path {
|
|
|
|
public func byRemovingBase(path: Path) -> Path {
|
|
return Path(normalize().string.replacingOccurrences(of: "\(path.normalize().string)/", with: ""))
|
|
}
|
|
}
|