From 55037153aea3afde6684fc0829545feab2e1e963 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 29 Oct 2021 08:05:10 +0200 Subject: [PATCH] Update 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 c3e975d0..c3ed2e44 100755 --- a/Scripts/clean-repo.ps1 +++ b/Scripts/clean-repo.ps1 @@ -23,7 +23,7 @@ try { if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" } $RepoDirName = (get-item "$RepoDir").Name - "🧹 Cleaning untracked files..." + "🧹 Cleaning from untracked files..." $Null = (git --version) if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }