Skip to content

Commit

Permalink
Merge branch 'Dev' into DRG-cleanup-microsoft#3309
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois authored Jul 11, 2023
2 parents 02c805f + e0003cb commit cc75937
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# UNRELEASED

* SPOApp
* Fixes an issue where the extraction was complaining about op_addition failing.
* DRG
* General cleanup from generated resources from DRG
* Added module M365DSCDRGUtil.psm1
Expand Down
4 changes: 2 additions & 2 deletions Modules/Microsoft365DSC/Modules/M365DSCUtil.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -2387,8 +2387,8 @@ function Get-AllSPOPackages
{
try
{
$spfxFiles = Find-PnPFile -List 'AppCatalog' -Match '*.sppkg' -ErrorAction Stop
$appFiles = Find-PnPFile -List 'AppCatalog' -Match '*.app' -ErrorAction Stop
[Array]$spfxFiles = Find-PnPFile -List 'AppCatalog' -Match '*.sppkg' -ErrorAction Stop
[Array]$appFiles = Find-PnPFile -List 'AppCatalog' -Match '*.app' -ErrorAction Stop

$allFiles = $spfxFiles + $appFiles

Expand Down

0 comments on commit cc75937

Please sign in to comment.