Skip to content

Commit

Permalink
Add application
Browse files Browse the repository at this point in the history
  • Loading branch information
aholstrup1 committed Nov 9, 2023
1 parent 7ff7366 commit 4bb3a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build/Scripts/NewBcContainer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ New-BcContainer @parameters
$installedApps = Get-BcContainerAppInfo -containerName $containerName -tenantSpecificProperties -sort DependenciesLast
$installedApps | ForEach-Object {
Write-Host "Removing $($_.Name)"
if ($_.Name -notin @("System Application", "Base Application")) {
if ($_.Name -notin @("System Application", "Base Application", "Application")) {
Unpublish-BcContainerApp -containerName $parameters.ContainerName -name $_.Name -unInstall -doNotSaveData -doNotSaveSchema -force
} else {
Write-Host "Skipping $($_.Name)"
Expand Down

0 comments on commit 4bb3a06

Please sign in to comment.