Skip to content

Commit

Permalink
Only trigger rubinius-build on linux.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
brixen committed Feb 25, 2016
1 parent 680c9c8 commit e45b261
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/deploy.sh
Expand Up @@ -147,6 +147,10 @@ function rbx_deploy_travis_binary {
}

function rbx_deploy_travis_12_04_binary {
if [[ $1 != linux ]]; then
return
fi

local url response sha travis_yml version

json_url="https://api.github.com/repos/rubinius/rubinius-build/contents/.travis.yml"
Expand Down Expand Up @@ -347,7 +351,7 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
rbx_deploy_travis_binary "$TRAVIS_OS_NAME"
;;
"travis-12.04")
rbx_deploy_travis_12_04_binary
rbx_deploy_travis_12_04_binary "$TRAVIS_OS_NAME"
;;
"homebrew-binary")
rbx_deploy_homebrew_binary "$TRAVIS_OS_NAME"
Expand Down

0 comments on commit e45b261

Please sign in to comment.