File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ $ngFolder = Join-Path $buildFolder "../../angular"
88
99# # CLEAR ######################################################################
1010
11- Remove-Item $outputFolder - Force - Recurse
11+ Remove-Item $outputFolder - Force - Recurse - ErrorAction Ignore
1212New-Item - Path $outputFolder - ItemType Directory
1313
1414# # RESTORE NUGET PACKAGES #####################################################
@@ -24,6 +24,7 @@ dotnet publish --output (Join-Path $outputFolder "Host")
2424# # PUBLISH ANGULAR UI PROJECT #################################################
2525
2626Set-Location $ngFolder
27+ & yarn
2728& ng build - prod
2829Copy-Item (Join-Path $ngFolder " dist" ) (Join-Path $outputFolder " ng" ) - Recurse
2930Copy-Item (Join-Path $ngFolder " Dockerfile" ) (Join-Path $outputFolder " ng" )
You can’t perform that action at this time.
0 commit comments