mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-26 18:03:35 +01:00
Improve make-repo.ps1
This commit is contained in:
parent
26c80f0145
commit
6ee83a53ab
@ -30,7 +30,7 @@ function MakeDir { param($Path)
|
|||||||
set-location "$Path/"
|
set-location "$Path/"
|
||||||
|
|
||||||
& ./configure
|
& ./configure
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'configure' has failed" }
|
if ($lastExitCode -ne "0") { throw "Script 'configure' exited with error code $lastExitCode" }
|
||||||
|
|
||||||
& make -j4
|
& make -j4
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
@ -40,7 +40,7 @@ function MakeDir { param($Path)
|
|||||||
set-location "$Path/"
|
set-location "$Path/"
|
||||||
|
|
||||||
& ./autogen.sh
|
& ./autogen.sh
|
||||||
if ($lastExitCode -ne "0") { throw "Script 'autogen.sh' has failed" }
|
if ($lastExitCode -ne "0") { throw "Script 'autogen.sh' exited with error code $lastExitCode" }
|
||||||
|
|
||||||
& make -j4
|
& make -j4
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
@ -77,7 +77,7 @@ function MakeDir { param($Path)
|
|||||||
set-location "$Path/"
|
set-location "$Path/"
|
||||||
|
|
||||||
& ./compile.sh
|
& ./compile.sh
|
||||||
if ($lastExitCode -ne "0") { throw "Script 'compile.sh' has failed" }
|
if ($lastExitCode -ne "0") { throw "Script 'compile.sh' exited with error code $lastExitCode" }
|
||||||
|
|
||||||
& make -j4
|
& make -j4
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
@ -87,7 +87,7 @@ function MakeDir { param($Path)
|
|||||||
set-location "$Path/attower/src/build/DevBuild/"
|
set-location "$Path/attower/src/build/DevBuild/"
|
||||||
|
|
||||||
& ./build.bat build-all-release
|
& ./build.bat build-all-release
|
||||||
if ($lastExitCode -ne "0") { throw "Script 'build.bat' returned error(s)" }
|
if ($lastExitCode -ne "0") { throw "Script 'build.bat' exited with error code $lastExitCode" }
|
||||||
|
|
||||||
} elseif (test-path "$Path/$DirName" -pathType container) {
|
} elseif (test-path "$Path/$DirName" -pathType container) {
|
||||||
"⏳ No make rule found, trying subfolder 📂$($DirName)..."
|
"⏳ No make rule found, trying subfolder 📂$($DirName)..."
|
||||||
|
Loading…
Reference in New Issue
Block a user