Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #192 from dotnet-architecture/revert-191-revert-19…
Browse files Browse the repository at this point in the history
…0-fix-mac-ci-build

Revert "Revert "Fix mac ci build""
  • Loading branch information
CESARDELATORRE authored May 7, 2017
2 parents 51fcd6b + e0c96de commit 860d699
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions cli-mac/build-bits.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ projectList=(
"../src/Web/WebStatus"
)


pushd $(pwd)/../src/Web/WebSPA
npm install
npm rebuild node-sass
popd

for project in "${projectList[@]}"
do
echo -e "\e[33mWorking on $(pwd)/$project"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.ci.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ services:
volumes:
- .:/src
working_dir: /src
command: /bin/bash -c "dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"
command: /bin/bash -c "pushd ./src/Web/WebSPA && npm install && npm rebuild node-sass && popd && dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"

0 comments on commit 860d699

Please sign in to comment.