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"
8
8
9
9
# # CLEAR ######################################################################
10
10
11
- Remove-Item $outputFolder - Force - Recurse
11
+ Remove-Item $outputFolder - Force - Recurse - ErrorAction Ignore
12
12
New-Item - Path $outputFolder - ItemType Directory
13
13
14
14
# # RESTORE NUGET PACKAGES #####################################################
@@ -24,6 +24,7 @@ dotnet publish --output (Join-Path $outputFolder "Host")
24
24
# # PUBLISH ANGULAR UI PROJECT #################################################
25
25
26
26
Set-Location $ngFolder
27
+ & yarn
27
28
& ng build - prod
28
29
Copy-Item (Join-Path $ngFolder " dist" ) (Join-Path $outputFolder " ng" ) - Recurse
29
30
Copy-Item (Join-Path $ngFolder " Dockerfile" ) (Join-Path $outputFolder " ng" )
You can’t perform that action at this time.
0 commit comments