OCram85/DroneHelper
OCram85
/
DroneHelper
Archived
1
0
Fork 0

add psdkit deps
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
OCram85 2022-07-27 10:43:11 +02:00
parent e6ad2926cf
commit b8e20f5607
2 changed files with 27 additions and 0 deletions

View File

@ -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 = @{

View File

@ -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 = @{