From 26476e32de59ce93429748f4f5bac641c5c452fa Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 5 May 2021 10:44:46 +0200 Subject: [PATCH] Improve output of clean-repo.ps1 --- Scripts/clean-repo.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/clean-repo.ps1 b/Scripts/clean-repo.ps1 index 7577ae6a..251ee68f 100755 --- a/Scripts/clean-repo.ps1 +++ b/Scripts/clean-repo.ps1 @@ -23,7 +23,7 @@ try { & git submodule foreach --recursive git clean -fdx if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" } - "✔️ Git repository 📂$RepoDir is clean now" + "✔️ cleaned Git repository 📂$RepoDir" exit 0 } catch { write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"