mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Improve the output
This commit is contained in:
parent
0c50ee42d5
commit
f170bc831c
@ -11,22 +11,24 @@ param($RepoDir = "$PWD")
|
|||||||
try {
|
try {
|
||||||
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
|
|
||||||
$RepoDir = resolve-path -path "$RepoDir" -relative
|
$RepoDir = resolve-path "$RepoDir"
|
||||||
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
|
|
||||||
if (test-path "$RepoDir/CMakeLists.txt") {
|
if (test-path "$RepoDir/CMakeLists.txt") {
|
||||||
"⏳ Building 📂$RepoDir using CMakeLists.txt ..."
|
"⏳ Building 📂$RepoDir using CMakeLists.txt ..."
|
||||||
if (-not(test-path "$RepoDir/CMakeBuild")) {
|
if (-not(test-path "$RepoDir/BuildFiles/" -pathType container)) {
|
||||||
& mkdir "$RepoDir/CMakeBuild/"
|
& mkdir "$RepoDir/BuildFiles/"
|
||||||
}
|
}
|
||||||
set-location "$RepoDir/CMakeBuild/"
|
|
||||||
|
|
||||||
|
set-location "$RepoDir/BuildFiles/"
|
||||||
& cmake ..
|
& cmake ..
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'cmake ..' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'cmake ..' has failed" }
|
||||||
|
|
||||||
& make -j4
|
& make -j4
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
|
|
||||||
|
set-location ".."
|
||||||
|
|
||||||
} elseif (test-path "$RepoDir/configure") {
|
} elseif (test-path "$RepoDir/configure") {
|
||||||
"⏳ Building 📂$RepoDir using 'configure' ..."
|
"⏳ Building 📂$RepoDir using 'configure' ..."
|
||||||
set-location "$RepoDir/"
|
set-location "$RepoDir/"
|
||||||
@ -76,7 +78,7 @@ try {
|
|||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
"✔️ built Git repository 📂$RepoDir in $($StopWatch.Elapsed.Seconds) second(s)"
|
"✔️ built Git repository 📂$RepoDir in $($StopWatch.Elapsed.Seconds) sec."
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
@ -23,7 +23,7 @@ try {
|
|||||||
$URL = $Row.URL
|
$URL = $Row.URL
|
||||||
$DirName = $Row.Directory
|
$DirName = $Row.Directory
|
||||||
if (test-path "$ParentDir/$DirName" -pathType container) {
|
if (test-path "$ParentDir/$DirName" -pathType container) {
|
||||||
"Skipping 📂$DirName - it exists already ..."
|
"Skipping 📂$DirName because it exists already ..."
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
"⏳ Cloning $URL to 📂$DirName ..."
|
"⏳ Cloning $URL to 📂$DirName ..."
|
||||||
|
Loading…
Reference in New Issue
Block a user