Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit d4c5ec9

Browse files
authored
Merge pull request #341 from github-for-unity/build/reduce-verbosity-of-build-script
Reduce verbosity of build script so it's easier to read
2 parents 28d61dd + 2041369 commit d4c5ec9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -eux
1+
#!/bin/sh -eu
22
Configuration="dev"
33
if [ $# -gt 0 ]; then
44
Configuration=$1
@@ -32,7 +32,7 @@ else
3232
nuget restore GitHub.Unity.sln
3333
fi
3434

35-
xbuild GitHub.Unity.sln /verbosity:normal /property:Configuration=$Configuration /target:$Target || true
35+
xbuild GitHub.Unity.sln /verbosity:minimal /property:Configuration=$Configuration /target:$Target || true
3636

3737
rm -f unity/PackageProject/Assets/Plugins/GitHub/Editor/deleteme*
3838
rm -f unity/PackageProject/Assets/Plugins/GitHub/Editor/deleteme*

0 commit comments

Comments
 (0)