We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ca28a9 commit 3f5ad6aCopy full SHA for 3f5ad6a
UploadScript.sh
@@ -8,6 +8,12 @@ declare -r max=4
8
declare i=0
9
10
function wrap() {
11
+ mono_version=$(mono --version | awk '/version/ { print $5 }')
12
+ if [ "$travis_os_name" = "linux" ] & [ "$mono_version" != "3.2.8" ] ;
13
+ then
14
+ echo "Wrong Mono version- Not uploading this build"
15
+ exit
16
+ fi
17
local cmd=$1 ; shift
18
retry $cmd "$@"
19
local success=$?
0 commit comments