-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUpdateReposWeb_Extended.ps1
More file actions
30 lines (17 loc) · 1.07 KB
/
UpdateReposWeb_Extended.ps1
File metadata and controls
30 lines (17 loc) · 1.07 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
# Clones or updates the EXTENDED WEB repositories in iglibmodules/.
Write-Host "`n`nCloning / updating EXTENDED WEB repositories in iglibmodules/ ..."
# 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"
# Cloning/updating BASIC WEB repositories:`n"
& $(join-path $scriptDir "UpdateReposWeb_Basic.ps1")
Write-Host "`n`nUpdating EXTENDED WEB repositories:`n"
# Updating nested web repositories within web/ajgorhoe.github.io:
Write-Host "`nUpdating extended web repositories within web/ajgorhoe.github.io:`n"
# Write-Host "`nUpdating web/ajgorhoe.github.io/test:"
# & $(Join-Path $scriptDir "web/ajgorhoe.github.io/UpdateRepo_test.ps1")
Write-Host "`nUpdating web/ajgorhoe.github.io/IGLibFrameworkCodedoc:"
& $(Join-Path $scriptDir "web/ajgorhoe.github.io/UpdateRepo_IGLibFrameworkCodedoc.ps1")
Write-Host " ... updating EXTENDED repositoris in iglibmodules/ completed.`n`n"