WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 6fbba52

Browse files
committed
Fix buildAll.cmd and buildAll.sh when running on clear repo
This is followup to c91884a change which on itself was reaction to electron-builder changes in the command line parameters interface
1 parent 69ca5d6 commit 6fbba52

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)