From d2457203bcdc36b1ae4f13447935bad879afbab3 Mon Sep 17 00:00:00 2001 From: duncan Date: Fri, 14 Aug 2020 10:19:11 +0100 Subject: [PATCH] Add build electron host to buildAll.sh --- buildAll.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildAll.sh b/buildAll.sh index 5157290..a02959a 100755 --- a/buildAll.sh +++ b/buildAll.sh @@ -1,6 +1,12 @@ dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P) echo "Start building Electron.NET dev stack..." +echo "Build Electron Host" +pushd $dir//ElectronNET.Host + npm install + npm run-script start +popd + echo "Restore & Build API" pushd $dir/ElectronNET.API dotnet restore