PowerShell/Scripts/list-submodules.ps1

38 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2022-03-28 14:32:54 +02:00
Lists the submodules in a Git repository
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2022-03-28 14:32:54 +02:00
This PowerShell script lists the submodules in the given Git repository.
2021-10-15 23:09:08 +02:00
.PARAMETER RepoDir
2022-03-28 14:32:54 +02:00
Specifies the path to the repository (current working directory by default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./list-submodules C:\MyRepo
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-05-06 16:58:24 +02:00
#>
2021-07-15 15:51:22 +02:00
param([string]$RepoDir = "$PWD")
2021-05-06 16:58:24 +02:00
try {
2022-03-28 14:32:54 +02:00
"⏳ Step 1/3: Checking requirements... "
2021-05-06 16:58:24 +02:00
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
2022-03-28 14:32:54 +02:00
& git --version
2021-05-06 16:58:24 +02:00
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
2022-03-28 14:32:54 +02:00
"⏳ Step 2/3: Fetching latest updates... "
& git -C "$RepoDir" fetch
2021-05-06 17:10:00 +02:00
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
2022-03-28 14:32:54 +02:00
"⏳ Step 3/3: Listing submodules... "
& git -C "$RepoDir" submodule
2021-05-06 16:58:24 +02:00
if ($lastExitCode -ne "0") { throw "'git submodule' failed" }
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-05-06 16:58:24 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-05-06 16:58:24 +02:00
exit 1
}