Skip to content

Commit 220b4b2

Browse files
committed
shell test
1 parent 4bccbdf commit 220b4b2

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

buildAll.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build
2121
echo "-- linux (dev-build)"
2222
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
2323

24-
REM Be aware, that for non-electronnet-dev environemnts the correct
24+
REM Be aware, that for non-electronnet-dev environments the correct
2525
REM invoke command would be dotnet electronize ...
2626

2727
REM Not supported on Windows Systems, because of SymLinks...

buildAll.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,28 @@ cd $dir/ElectronNET.API
55
dotnet restore
66
dotnet build
77
cd ..
8+
89
echo "Restore & Build API"
910
cd $dir/ElectronNET.CLI
1011
dotnet restore
1112
dotnet build
1213
cd ..
14+
1315
echo "Restore & Build WebApp Demo"
1416
cd $dir/ElectronNET.WebApp
1517
dotnet restore
1618
dotnet build
19+
cd ..
1720

1821
echo "Invoke electronize build in WebApp Demo"
1922
echo "-- win (dev-build)"
20-
dotnet $dir/ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll build win
23+
dotnet "$dir/ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
2124

2225
echo "-- linux (dev-build)"
23-
dotnet $dir/ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll build linux
26+
dotnet "$dir/ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
2427

2528
echo "-- osx (dev-build)"
26-
dotnet $dir/ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll build osx
29+
dotnet "$dir/ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build osx
2730

28-
# Be aware, that for non-electronnet-dev environemnts the correct
31+
# Be aware, that for non-electronnet-dev environments the correct
2932
# invoke command would be dotnet electronize ...

0 commit comments

Comments
 (0)