XcodeGen/Sources/XcodeGenKit/PathExtensions.swift
2017-11-22 13:01:17 +01:00

10 lines
212 B
Swift

import Foundation
import PathKit
extension Path {
func byRemovingBase(path: Path) -> Path {
return Path(normalize().string.replacingOccurrences(of: "\(path.normalize().string)/", with: ""))
}
}