From 7bc050921163d9d0a4ebb1a2552519fe7687eb06 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 30 Apr 2025 10:48:13 +0200 Subject: [PATCH] Updated check-xml-file.ps1 --- scripts/check-xml-file.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"