From 6678dea5f76acc89f036d3ae7a977d83b7faf7cd Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 19 Apr 2021 08:48:29 +0200 Subject: [PATCH] Improve 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 c7d3dbde..3e4e0a0c 100755 --- a/Scripts/clean-repo.ps1 +++ b/Scripts/clean-repo.ps1 @@ -24,7 +24,7 @@ try { & git submodule foreach --recursive git clean -fdx if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" } - "📂 $RepoDir is clean" + "✔️ Git repository 📂$RepoDir is clean now" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"