You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash -x
|
|
|
|
function ExitIfNonZero {
|
|
if [ $1 -ne 0 ]; then
|
|
exit $1
|
|
fi
|
|
}
|
|
|
|
xbuild /p:NoWarn=1584 DepotDownloader.sln /target:DepotDownloader
|
|
ExitIfNonZero $?
|