-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUpdateReposLegacy_Basic.ps1
More file actions
29 lines (17 loc) · 1.02 KB
/
UpdateReposLegacy_Basic.ps1
File metadata and controls
29 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Clones or updates the basic IGLib Frameworrk repositories in iglibmodules.
Write-Host "`n`nCloning / updating basic IGLib Framework repositories in iglibmodules ...`n"
# Get the script directory such that relative paths can be resolved:
$scriptPath = $MyInvocation.MyCommand.Path
$scriptDir = Split-Path $scriptPath -Parent
$scriptFilename = [System.IO.Path]::GetFileName($scriptPath)
Write-Host "Script directory: $scriptDir"
Write-Host "`nUpdating iglib:"
& $(Join-Path $scriptDir "_scripts/IGLibFramework/UpdateRepo_iglib.ps1")
Write-Host "`nUpdating iglibexternal:"
& $(Join-Path $scriptDir "_scripts/IGLibFramework/UpdateRepo_iglibexternal.ps1")
Write-Host "`nUpdating igsolutions:"
& $(Join-Path $scriptDir "_scripts/IGLibFramework/UpdateRepo_igsolutions.ps1")
# Finally, also update the group of IGLib basic repositories:
Write-Host "`nUpdating basic IGLib repositories via UpdateRepos_Basic.ps1:`n"
& $(join-path $scriptDir "UpdateRepos_Basic.ps1")
Write-Host " ... updating basic IGLib Framework repositories completed.`n`n"