Skip to content

Commit 1f7908a

Browse files
Merge pull request #321 from kant2002/issue-320
Fix `buildAll.cmd` and `buildAll.sh` when running on clear repo
2 parents 69ca5d6 + 6fbba52 commit 1f7908a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

buildAll.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ dotnet tool uninstall ElectronNET.CLI -g
2222
dotnet tool install ElectronNET.CLI -g
2323

2424
echo "/target xxx (dev-build)"
25-
electronize build /target custom win7-x86;win32 /dotnet-configuration Debug /electron-arch ia32 /electron-params "--prune=true "
25+
electronize build /target custom win7-x86;win /dotnet-configuration Debug /electron-arch ia32 /electron-params "--prune=true "
2626

2727
echo "/target win (dev-build)"
2828
electronize build /target win
2929

3030
echo "/target linux (dev-build)"
3131
electronize build /target linux
3232

33-
echo "/target custom win7-x86;win32 (dev-build)"
34-
electronize build /target custom win7-x86;win32
33+
echo "/target custom win7-x86;win (dev-build)"
34+
electronize build /target custom win7-x86;win
3535

3636

3737
:: Be aware, that for non-electronnet-dev environments the correct

buildAll.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ electronize build /target linux
3232
echo "/target osx (dev-build)"
3333
electronize build /target osx
3434

35-
echo "/target custom win7-x86;win32 (dev-build)"
36-
electronize build /target custom "win7-x86;win32"
35+
echo "/target custom win7-x86;win (dev-build)"
36+
electronize build /target custom "win7-x86;win"
3737

3838
# Be aware, that for non-electronnet-dev environments the correct
3939
# invoke command would be dotnet electronize ...

0 commit comments

Comments
 (0)