-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPrintCurrentRepoVars.ps1
More file actions
20 lines (17 loc) · 1.1 KB
/
PrintCurrentRepoVars.ps1
File metadata and controls
20 lines (17 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Prints variables used by repository updating/cloning script to fill
# unset parameters.
Write-Host "`n-------------------------------------------------------"
# Print all variables used as settings for updating / cloning repositories:
Write-Host "Variables for repository updating / cloning scripts:"
Write-Host " CurrentRepo_Directory: $CurrentRepo_Directory"
Write-Host " CurrentRepo_Ref: $CurrentRepo_Ref"
Write-Host " CurrentRepo_Address: $CurrentRepo_Address"
Write-Host " CurrentRepo_Remote: $CurrentRepo_Remote"
Write-Host " CurrentRepo_AddressSecondary: $CurrentRepo_AddressSecondary"
Write-Host " CurrentRepo_RemoteSecondary: $CurrentRepo_RemoteSecondary"
Write-Host " CurrentRepo_AddressTertiary: $CurrentRepo_AddressTertiary"
Write-Host " CurrentRepo_RemoteTertiary: $CurrentRepo_RemoteTertiary"
Write-Host " CurrentRepo_ThrowOnErrors: $CurrentRepo_ThrowOnErrors"
Write-Host " CurrentRepo_DefaultFromVars: $CurrentRepo_DefaultFromVars"
Write-Host " CurrentRepo_BaseDirectory : $CurrentRepo_BaseDirectory"
Write-Host "---------------------------------------------------------`n"