2014-09-08 23:27:26 +04:00
|
|
|
#!/bin/bash
|
2015-08-18 21:37:20 +03:00
|
|
|
|
|
|
|
#Restore nuget packages
|
|
|
|
#Run mozroots --import --sync if certificates are not found
|
2015-08-18 04:02:20 +03:00
|
|
|
mono ./tools/nuget.exe restore nunit.linux.sln
|
|
|
|
if [ "$?" -ne 0 ]; then echo "NuGet restore failed."; exit 1; fi
|
|
|
|
|
2015-08-18 21:37:20 +03:00
|
|
|
#run xbuild itself
|
2014-11-04 05:16:42 +03:00
|
|
|
xbuild "$@"
|