Skip to content

Commit

Permalink
build.sh: actually abort on errors
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
  • Loading branch information
flichtenheld committed Aug 14, 2023
1 parent b3f40fe commit 02575b7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/bin/sh

xbuild /p:Configuration=Release "/p:Platform=Any CPU" OpenVpnService.sln
xbuild /p:Configuration=Release "/p:Platform=x86" OpenVpnService.sln
xbuild /p:Configuration=Release "/p:Platform=x64" OpenVpnService.sln
set -eux

xbuild /p:Configuration=Debug "/p:Platform=Any CPU" OpenVpnService.sln
xbuild /p:Configuration=Debug "/p:Platform=x86" OpenVpnService.sln
xbuild /p:Configuration=Debug "/p:Platform=x64" OpenVpnService.sln
xbuild /p:Configuration=Release "/p:Platform=Any CPU" OpenVpnService.sln
xbuild /p:Configuration=Release "/p:Platform=x86" OpenVpnService.sln
xbuild /p:Configuration=Release "/p:Platform=x64" OpenVpnService.sln

xbuild /p:Configuration=Debug "/p:Platform=Any CPU" OpenVpnService.sln
xbuild /p:Configuration=Debug "/p:Platform=x86" OpenVpnService.sln
xbuild /p:Configuration=Debug "/p:Platform=x64" OpenVpnService.sln

0 comments on commit 02575b7

Please sign in to comment.