Files
XcodeGen/Sources/XcodeGenKit/PathExtensions.swift
T
2017-07-24 18:11:39 +02:00

18 lines
301 B
Swift

//
// PathExtensions.swift
// XcodeGen
//
// Created by Yonas Kolb on 24/7/17.
//
//
import Foundation
import PathKit
extension Path {
func byRemovingBase(path: Path) -> Path {
return Path(normalize().string.replacingOccurrences(of: "\(path.normalize().string)/", with: ""))
}
}