[xcodegen] NFC: Rename resolvingSymlinks -> realPath

This commit is contained in:
Hamish Knight
2025-06-15 20:28:20 +01:00
parent 9a0a831b01
commit 01dbed9107
2 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ public extension AbsolutePath {
(try? FileManager.default.destinationOfSymbolicLink(atPath: rawPath)) != nil
}
var resolvingSymlinks: Self {
var realPath: Self {
guard let resolved = realpath(rawPath, nil) else { return self }
defer {
free(resolved)