Fixed change in SPA path for the build bits scripts, PowerShell and Mac Bash

This commit is contained in:
Cesar De la Torre 2017-02-22 18:54:51 -08:00
parent 405db61454
commit 33501657b7
2 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ Write-Host "webMVCPathToPub is $webMVCPathToPub" -ForegroundColor Yellow
# *** WebSPA paths ***
$webSPAPath = $scriptPath + "\src\Web\WebSPA\eShopOnContainers.WebSPA"
$webSPAPathToProject = $webSPAPath + "\eShopOnContainers.WebSPA.csproj"
$webSPAPath = $scriptPath + "\src\Web\WebSPA"
$webSPAPathToProject = $webSPAPath + "\WebSPA.csproj"
Write-Host "webSPAPathToProject is $webSPAPathToProject" -ForegroundColor Yellow
$webSPAPathToPub = $webSPAPath + "\obj\Docker\publish"
Write-Host "webSPAPathToPub is $webSPAPathToPub" -ForegroundColor Yellow

View File

@ -6,7 +6,7 @@ projectList=(
"src/Services/Ordering/Ordering.API"
"src/Services/Identity/Identity.API"
"src/Web/WebMVC"
"src/Web/WebSPA/eShopOnContainers.WebSPA"
"src/Web/WebSPA"
)
for project in "${projectList[@]}"