Improve the output

This commit is contained in:
Markus Fleschutz 2021-05-24 16:30:45 +02:00
parent 6ee83a53ab
commit b71268ceaf

View File

@ -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/"
}