File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
tools/office-cmdlet-updater Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
GET_TEAM : 'Get-Team' ,
3
+ INSTALL_PACKAGE_PROVIDER : 'Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force' ,
3
4
INSTALL_MICROSOFT_TEAM : 'Install-Module MicrosoftTeams -SkipPublisherCheck -Force' ,
4
5
CONNECT_MICROSOFT_TEAM : 'Connect-MicrosoftTeams' ,
5
6
INSTALL_PLATYPS : 'Install-Module -Name platyPS -SkipPublisherCheck -Scope CurrentUser -Force' ,
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ class CmdletDependenciesService {
43
43
}
44
44
45
45
async installPlatyPs ( ) {
46
+ await this . ps . invokeCommand ( commands . INSTALL_PACKAGE_PROVIDER ) ;
46
47
await this . ps . invokeCommand ( commands . INSTALL_PLATYPS ) ;
47
48
await this . ps . invokeCommand ( commands . IMPORT_PLATYPS ) ;
48
49
}
You can’t perform that action at this time.
0 commit comments