Skip to content

Commit

Permalink
Update PowerDataOps.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
AymericM78 authored Nov 6, 2024
1 parent 90b6fa8 commit 1e73a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PowerDataOps.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $requiredModules = @("Microsoft.PowerApps.Administration.PowerShell")
foreach ($module in $requiredModules) {
if (-not(Get-Module -ListAvailable -Name $module)) {
Write-Verbose "$module does not exist";
Install-Module -Name $module -RequiredVersion "2.0.194" -Scope CurrentUser -SkipPublisherCheck -Force -Confirm:$false -AllowClobber;
Install-Module -Name $module -RequiredVersion "2.0.200" -Scope CurrentUser -SkipPublisherCheck -Force -Confirm:$false -AllowClobber;
}
Import-Module -Name $module -DisableNameChecking;
Write-Verbose " > Loading module : '$module' => OK !";
Expand Down

0 comments on commit 1e73a3f

Please sign in to comment.