Skip to content
Snippets Groups Projects
Commit 99a6a6ef authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Fix output formatting messed up by VS console.

The second colon (:) has strange effects in the "Output" window of
VisualStudio, messing up the text alignment.
parent 928d4bc0
No related branches found
No related tags found
No related merge requests found
......@@ -66,8 +66,8 @@ try {
$DescItems = Parse-GitDescribe $CommitName
if ($GitStatus.Length -gt 0) {
$StatusWarning = " <-- WARNING: repository has uncommitted changes!"
$CommitName = "$($CommitName)-unclean"
$StatusWarning = " <-- WARNING, repository has uncommitted changes!"
$CommitName += "-unclean"
}
}
catch {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment