From 33501657b7cc563f269a47ea21af0057fb90fba2 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Wed, 22 Feb 2017 18:54:51 -0800 Subject: [PATCH] Fixed change in SPA path for the build bits scripts, PowerShell and Mac Bash --- build-bits.ps1 | 4 ++-- build-bits.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-bits.ps1 b/build-bits.ps1 index 267171f2d..d81cdc8a0 100644 --- a/build-bits.ps1 +++ b/build-bits.ps1 @@ -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 diff --git a/build-bits.sh b/build-bits.sh index 6575b4f7c..452236882 100755 --- a/build-bits.sh +++ b/build-bits.sh @@ -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[@]}"