add psdkit deps
This commit is contained in:
parent
e6ad2926cf
commit
b8e20f5607
@ -56,6 +56,19 @@ function Invoke-InstallDependency {
|
||||
ErrorAction = 'Stop'
|
||||
}
|
||||
Install-Module @PoshParams
|
||||
|
||||
$PsdKitParams = @{
|
||||
Name = 'PsdKit'
|
||||
Scope = 'CurrentUser'
|
||||
RequiredVersion = '0.6.2'
|
||||
Force = $true
|
||||
SkipPublisherCheck = $true
|
||||
AllowClobber = $true
|
||||
AllowPrerelease = $true
|
||||
Verbose = $VerbosePreference
|
||||
ErrorAction = 'Stop'
|
||||
}
|
||||
Install-Module @PsdKitParams
|
||||
}
|
||||
catch {
|
||||
$ExecParams = @{
|
||||
|
@ -49,6 +49,20 @@ function Invoke-FixDevDependency {
|
||||
ErrorAction = 'Stop'
|
||||
}
|
||||
Install-Module @PoshParams
|
||||
|
||||
|
||||
$PsdKitParams = @{
|
||||
Name = 'PsdKit'
|
||||
Scope = 'CurrentUser'
|
||||
RequiredVersion = '0.6.2'
|
||||
Force = $true
|
||||
SkipPublisherCheck = $true
|
||||
AllowClobber = $true
|
||||
AllowPrerelease = $true
|
||||
Verbose = $VerbosePreference
|
||||
ErrorAction = 'Stop'
|
||||
}
|
||||
Install-Module @PsdKitParams
|
||||
}
|
||||
catch {
|
||||
$ExecParams = @{
|
||||
|
Reference in New Issue
Block a user