forked from OneIdentity/safeguard-discovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-forpipeline.ps1
53 lines (47 loc) · 1.86 KB
/
install-forpipeline.ps1
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true,Position=0)]
[string]$TargetDir,
[Parameter(Mandatory=$true,Position=1)]
[string]$VersionString,
[Parameter(Mandatory=$true,Position=2)]
[bool]$IsPrerelease
)
if (-not $PSBoundParameters.ContainsKey("ErrorAction")) { $ErrorActionPreference = "Stop" }
if (-not (Test-Path $TargetDir))
{
Write-Host "Creating $TargetDir"
New-Item -Path $TargetDir -ItemType Container -Force | Out-Null
}
$ModuleName = "safeguard-discovery"
$Module = (Join-Path $PSScriptRoot "src\$ModuleName.psd1")
$CodeVersion = "$($VersionString.Split(".")[0..1] -join ".").99999"
$BuildVersion = "$($VersionString)"
Write-Host "Replacing CodeVersion: $CodeVersion with BuildVersion: $BuildVersion"
(Get-Content $Module -Raw).replace($CodeVersion, $BuildVersion) | Set-Content $Module
if (-not $IsPrerelease)
{
Write-Host "Removing the prerelease tag in the manifest"
(Get-Content $Module -Raw).replace("Prerelease = '-pre'", "#Prerelease = '-pre'") | Set-Content $Module
}
else
{
Write-Host "The module will be marked as prerelease"
}
$ModuleDef = (Invoke-Expression -Command (Get-Content $Module -Raw))
if ($ModuleDef["ModuleVersion"] -ne $BuildVersion)
{
throw "Did not replace code version properly, ModuleVersion is '$($ModuleDef["ModuleVersion"])' BuildVersion is '$BuildVersion'"
}
Write-Host "Installing '$ModuleName $($ModuleDef["ModuleVersion"])' to '$TargetDir'"
$ModuleDir = (Join-Path $TargetDir $ModuleName)
if (-not (Test-Path $ModuleDir))
{
New-Item -Path $ModuleDir -ItemType Container -Force | Out-Null
}
$VersionDir = (Join-Path $ModuleDir $ModuleDef["ModuleVersion"])
if (-not (Test-Path $VersionDir))
{
New-Item -Path $VersionDir -ItemType Container -Force | Out-Null
}
Copy-Item -Recurse -Path (Join-Path $PSScriptRoot "src\*") -Destination $VersionDir