Skip to content

Fix buildAll.cmd and buildAll.sh when running on clear repo #321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions buildAll.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ dotnet tool uninstall ElectronNET.CLI -g
dotnet tool install ElectronNET.CLI -g

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

echo "/target win (dev-build)"
electronize build /target win

echo "/target linux (dev-build)"
electronize build /target linux

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


:: Be aware, that for non-electronnet-dev environments the correct
Expand Down
4 changes: 2 additions & 2 deletions buildAll.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ electronize build /target linux
echo "/target osx (dev-build)"
electronize build /target osx

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

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