From 9920e8c6e14b095daa069fb89c17b403288d61c8 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Fri, 7 Oct 2016 17:20:22 -0700 Subject: [PATCH] Fixed path in .sh for Mac OS --- build-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-images.sh b/build-images.sh index 1ca0a6af0..d17527c8d 100644 --- a/build-images.sh +++ b/build-images.sh @@ -1,7 +1,7 @@ #!/bin/sh #dotnet restore rm -rf ./pub -dotnet publish "$(pwd)/src/Web/Microsoft.eShopOnContainers.WebMVC/project.json" -o "$(pwd)/pub/webMVC" +dotnet publish "$(pwd)/src/Web/WebMVC/project.json" -o "$(pwd)/pub/webMVC" dotnet publish "$(pwd)/src/Services/Catalog/Catalog.API/project.json" -o "$(pwd)/pub/catalog" dotnet publish "$(pwd)/src/Services/Ordering/Ordering.API/project.json" -o "$(pwd)/pub/ordering"