mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-10 21:33:47 +02:00
Add git fetch
This commit is contained in:
@ -14,6 +14,9 @@ try {
|
||||
$Null = (git --version)
|
||||
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
|
||||
|
||||
& git fetch
|
||||
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
|
||||
|
||||
& git submodule
|
||||
if ($lastExitCode -ne "0") { throw "'git submodule' failed" }
|
||||
|
||||
|
Reference in New Issue
Block a user