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[@]}"