Public/Get-GitModule.ps1

function Get-GitModule {

    [CmdletBinding(HelpUri='https://github.com/iricigor/InstallModuleFromGit/blob/master/Docs/Get-GitModule.md')]

    param (
        
        
        [Parameter(Mandatory,ValueFromPipelineByPropertyName,Position=0)]
        [string[]]$ProjectUri,
        # https://github.com/dfinke/InstallModuleFromGitHub
        # https://github.com/iricigor/FIFA2018
        
        [string]$Branch = "master",
        [switch]$KeepTempCopy

    )

    BEGIN {
        $FunctionName = $MyInvocation.MyCommand.Name
        Write-Verbose -Message "$(Get-Date -f G) $FunctionName starting"

        if (!(Test-Prerequisites)) {
            throw "$FunctionName prerequisites not met"
            # TODO: Add more details
        }

        if ($env:AGENT_TEMPDIRECTORY) {
            $tmpRoot = $env:AGENT_TEMPDIRECTORY    
        } else {
            $tmpRoot = [System.IO.Path]::GetTempPath()
        }        

    }

    PROCESS {

        foreach ($P1 in $ProjectUri) {

            Write-Verbose -Message "$(Get-Date -f T) processing $P1"

            $ModuleName = ($P1 -split '/')[-1]
            $tempDir = Join-Path $tmpRoot $ModuleName
            if (!(Test-Path $tempDir)) {
                Write-Verbose -Message "$(Get-Date -f T) creating directory $tempDir"
                New-Item $tempDir -ItemType Directory -Force | Out-Null
            } elseif (Get-ChildItem $tempDir -Force) {
                Write-Verbose -Message "$(Get-Date -f T) deleting content of temp directory $tempDir"
                Remove-Item (Join-Path $tempDir '*') -Recurse -Force
            }
            Write-Verbose -Message "$(Get-Date -f T) cloning repository to $tempDir"
            git clone $P1 --branch $Branch --single-branch $tempDir --quiet
            $psd1 = Get-ChildItem $tempDir -Include *.psd1 -Recurse

            if($psd1 -is [array]) {
                $errorText = "$FunctionName found multiple module manifests for $ModuleName"
            } elseif (!($psd1.FullName -is [string])) {
                $errorText = "$FunctionName found no module manifest for $ModuleName"
            } else {
                $ModuleVersion = (Get-Content -Raw $psd1.FullName | Invoke-Expression).ModuleVersion
                $errorText = $null
            }

            if ($KeepTempCopy) {
                Write-Verbose -Message "$(Get-Date -f T) not deleting temp copy"
            } else {
                Write-Verbose -Message "$(Get-Date -f T) deleting temp copy"
                Remove-Item $tempDir -Force -Recurse | Out-Null
            }

            if ($errorText) {
                # we need to throw the error after deleting temp directory
                Write-Error $errorText
                continue
            }

            # return value
            Write-Verbose -Message "$(Get-Date -f T) preparing return value"
            [PSCustomObject]@{
                Name = $ModuleName
                Version = $ModuleVersion
                LocalPath = if ($KeepTempCopy) {$tempDir} else {$null}
                Root = ((Split-Path $psd1.FullName -Parent) -eq $tempDir)
                SameName = ($psd1.BaseName -eq $ModuleName)
                ManifestName = $psd1.BaseName
                GitPath = $P1
            }
        }
    }

    END {
        Write-Verbose -Message "$(Get-Date -f G) $FunctionName completed"
    }

}