Browse Source

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

pull/68/head
Cesar De la Torre 8 years ago
parent
commit
33501657b7
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      build-bits.ps1
  2. +1
    -1
      build-bits.sh

+ 2
- 2
build-bits.ps1 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


+ 1
- 1
build-bits.sh 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[@]}"


Loading…
Cancel
Save