-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUpdateReposLegacy_ExtendedAll.ps1
More file actions
31 lines (18 loc) · 1.14 KB
/
UpdateReposLegacy_ExtendedAll.ps1
File metadata and controls
31 lines (18 loc) · 1.14 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
29
30
# Clones or updates ALL IGLib Framework repositories in iglibmodules.
Write-Host "`n`nCloning / updating ALL 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"
# First, update group of IGLib Framework's extended repositories.
# This will also update IGLib basic and Framework extended repositories
# (scripts UpdateRepos_Basic.ps1 and )
& $(join-path $scriptDir "UpdateReposLegacy_Extended.ps1")
Write-Host "`nUpdating extended-all IGLibFramework repositories:`n"
Write-Host "`nUpdating workspaceprojects:"
& $(Join-Path $scriptDir "_scripts/IGLibFramework/UpdateRepo_workspaceprojects.ps1")
# clone of workspaceproject_all (below) is not included (this is a very large project)
Write-Host "`nUpdating workspaceprojects_all:"
& $(Join-Path $scriptDir "_scripts/IGLibFramework/UpdateRepo_workspaceprojects_all.ps1")
Write-Host " ... updating all IGLib Framework repositories is complete.`n`n"