Fixes external dependencies in updated module manifest files #7

Merged
OCram85 merged 12 commits from fixExtDeps into master 2022-07-27 14:27:45 +02:00
2 changed files with 27 additions and 0 deletions
Showing only changes of commit b8e20f5607 - Show all commits

View File

@ -56,6 +56,19 @@ function Invoke-InstallDependency {
ErrorAction = 'Stop' ErrorAction = 'Stop'
} }
Install-Module @PoshParams 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 { catch {
$ExecParams = @{ $ExecParams = @{

View File

@ -49,6 +49,20 @@ function Invoke-FixDevDependency {
ErrorAction = 'Stop' ErrorAction = 'Stop'
} }
Install-Module @PoshParams 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 { catch {
$ExecParams = @{ $ExecParams = @{