diff --git a/scripts/check-xml-file.ps1 b/scripts/check-xml-file.ps1 index 16fd38ef..62078923 100755 --- a/scripts/check-xml-file.ps1 +++ b/scripts/check-xml-file.ps1 @@ -7,7 +7,7 @@ Specifies the path to the XML file .EXAMPLE PS> ./check-xml-file.ps1 myfile.xml - βœ… Valid XML in πŸ“„myfile.xml + βœ… myfile.xml is valid XML .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -34,7 +34,7 @@ try { if ($script:ErrorCount -gt 0) { throw "Invalid XML" } - "βœ… Valid XML in πŸ“„$path" + "βœ… $path is valid XML" exit 0 # success } catch { "⚠️ $($Error[0]) in πŸ“„$path"