Skip to content

Commit

Permalink
Create filesonly build container before enumerating installed apps (#…
Browse files Browse the repository at this point in the history
…3836)

Co-authored-by: freddydk <[email protected]>
  • Loading branch information
freddydk and freddydk authored Feb 18, 2025
1 parent 81d945a commit 809e151
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions AppHandling/Run-AlPipeline.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,8 @@ function GetInstalledApps {
$installedApps += @(GetAppInfo -AppFiles $compilerFolderAppFiles -compilerFolder $compilerFolder -cacheAppinfoPath (Join-Path $compilerFolder 'symbols/cache_AppInfo.json'))
}
elseif ($filesOnly) {
# Make sure container has been created
GetBuildContainer | Out-Null
$installedApps = Get-ChildItem -Path (Join-Path $packagesFolder '*.app') | ForEach-Object {
$appJson = Get-AppJsonFromAppFile -appFile $_.FullName
return @{
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ AL-Go issue 1330 CompilerFolder doesn't transfer installed Apps to NuGet resolut
AL-Go issue 1268 Do not throw an un-understandable error during nuGet download
Use FileStream when uploading per tenant extensions to online environments to support larger apps
Remove duplicate quotes in new Source and Build elements in apps generated by BcContainerHelper and AL-Go
Create filesonly build container before enumerating installed apps in Run-AlPipeline

6.0.34
Compare files before giving a warning about apps with the same name in Run-AlPipeline
Expand Down

0 comments on commit 809e151

Please sign in to comment.