From 6e5ff058af85afbd310c1b2d9bbcaceb8abbeca1 Mon Sep 17 00:00:00 2001 From: Luke Ceddia Date: Thu, 11 Jan 2018 23:11:06 +1100 Subject: [PATCH] Stop deployment from osx --- .travis/deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis/deploy.sh b/.travis/deploy.sh index d6952b764..060b30311 100755 --- a/.travis/deploy.sh +++ b/.travis/deploy.sh @@ -1,5 +1,7 @@ #!/bin/sh +if [ "$TRAVIS_OS_NAME" != "linux" ]; then exit; fi + # Prepare archives # mainversion=`awk '$1=="Version$" {split($3, A, /\"/);print A[2];}' < source/global/version.bas` # buildnum=`awk '$1=="BuildNum$" {split($3,A, /[\"\/]/); print A[3];}' < source/global/version.bas`