When logging preflight/postflight output, replace tab with four space indent

This commit is contained in:
Greg Neagle
2025-12-18 15:07:38 -08:00
parent 21cdb46252
commit 781b873522

View File

@@ -75,7 +75,7 @@ func runMunkiDirScript(_ scriptPath: String, taskName: String, runType: String)
whereSeparator: \.isNewline
).map(String.init)
for line in lines {
display.info("\t\(line)")
display.info(" \(line)")
}
}
if !result.error.isEmpty {
@@ -85,7 +85,7 @@ func runMunkiDirScript(_ scriptPath: String, taskName: String, runType: String)
whereSeparator: \.isNewline
).map(String.init)
for line in lines {
display.info("\t\(line)")
display.info(" \(line)")
}
}
return result.exitcode