We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e7ccd5 commit 9df0ce7Copy full SHA for 9df0ce7
aws-runtime/aws-config/mingw/src/aws/sdk/kotlin/runtime/auth/credentials/executeCommandMingw.kt
@@ -164,12 +164,7 @@ internal actual suspend fun executeCommand(
164
_wunlink(outPath.wideCString(this))
165
}
166
167
- // Normalize CRLF to LF (PowerShell/Windows) to make tests deterministic
168
- val normalized = sb.toString()
169
- .replace("\r\n", "\n")
170
- .replace("\r", "\n")
171
-
172
- exitCode to normalized
+ exitCode to sb.toString()
173
} finally {
174
CloseHandle(pi.hThread)
175
CloseHandle(pi.hProcess)
0 commit comments