Skip to content

Commit 40d9a26

Browse files
Remove whitespace
1 parent 569841c commit 40d9a26

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/ShellOut.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -380,11 +380,11 @@ private extension Process {
380380
#endif
381381

382382
waitUntilExit()
383-
383+
384384
if let handle = outputHandle, !handle.isStandard {
385385
handle.closeFile()
386386
}
387-
387+
388388
if let handle = errorHandle, !handle.isStandard {
389389
handle.closeFile()
390390
}
@@ -401,7 +401,7 @@ private extension Process {
401401
outputData: outputData
402402
)
403403
}
404-
404+
405405
return outputData.shellOutput()
406406
}
407407
}
@@ -419,7 +419,7 @@ private extension Data {
419419
guard let output = String(data: self, encoding: .utf8) else {
420420
return ""
421421
}
422-
422+
423423
guard !output.hasSuffix("\n") else {
424424
let endIndex = output.index(before: output.endIndex)
425425
return String(output[..<endIndex])

0 commit comments

Comments
 (0)