Skip to content

Commit ab0ccc3

Browse files
committed
Wait to create parent directory before linking
1 parent fe7e59e commit ab0ccc3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

unxip.swift

+6-3
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ struct Main {
416416

417417
// The assumption is that all directories are provided without trailing slashes
418418
func parentDirectory<S: StringProtocol>(of path: S) -> S.SubSequence {
419-
return path[..<path.lastIndex(of: "/")!]
419+
path[..<path.lastIndex(of: "/")!]
420420
}
421421

422422
// https://bugs.swift.org/browse/SR-15816
@@ -435,9 +435,11 @@ struct Main {
435435
continue
436436
}
437437

438-
if let (original, task) = hardlinks[file.identifier] {
438+
if let (original, originalTask) = hardlinks[file.identifier] {
439+
let task = parentDirectoryTask(for: file)
440+
assert(task != nil, file.name)
439441
_ = taskStream.addRunningTask {
440-
await task.value
442+
_ = await (originalTask.value, task?.value)
441443
warn(link(original, file.name), "linking")
442444
}
443445
continue
@@ -450,6 +452,7 @@ struct Main {
450452
let task = parentDirectoryTask(for: file)
451453
assert(task != nil, file.name)
452454
_ = taskStream.addRunningTask {
455+
await task?.value
453456
warn(symlink(String(data: Data(file.data.map(Array.init).reduce([], +)), encoding: .utf8), file.name), "symlinking")
454457
setStickyBit(on: file)
455458
}

0 commit comments

Comments
 (0)