From b71268ceaf840c461b8d15a0b76fd8d69f8f38ec Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 24 May 2021 16:30:45 +0200 Subject: [PATCH] Improve the output --- Scripts/make-repo.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/make-repo.ps1 b/Scripts/make-repo.ps1 index 5389ee71..a3bb8be3 100755 --- a/Scripts/make-repo.ps1 +++ b/Scripts/make-repo.ps1 @@ -10,7 +10,7 @@ param($RepoDir = "$PWD") function MakeDir { param($Path) $DirName = (get-item "$Path").Name if (test-path "$Path/CMakeLists.txt") { - "⏳ Building 📂$DirName using CMakeLists.txt..." + "⏳ Building 📂$DirName using CMakeLists.txt to subfolder BuildFiles..." if (-not(test-path "$Path/BuildFiles/" -pathType container)) { & mkdir "$Path/BuildFiles/" }