From 88be39e8c6b436e0ee725dcbd4a94659a265c6f8 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 22 May 2021 16:12:16 +0200 Subject: [PATCH] Change output line --- Scripts/clone-repos.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/clone-repos.ps1 b/Scripts/clone-repos.ps1 index 6d52ef95..9d77531f 100755 --- a/Scripts/clone-repos.ps1 +++ b/Scripts/clone-repos.ps1 @@ -22,7 +22,7 @@ try { $URL = $Row.URL $DirName = $Row.Directory if (test-path "$ParentDir/$DirName" -pathType container) { - "Skipping 📂$DirName (exists already)..." + "Skipping 📂$DirName - exists already..." continue } "⏳ Cloning $URL to 📂$($DirName)..."