From 72960665479c76c9f497c01cc9fd58aae5c4284f Mon Sep 17 00:00:00 2001 From: Elijah Lazkani Date: Sat, 18 Mar 2017 01:56:24 -0400 Subject: [PATCH] Moving away from the brew install curl route and trying to install salt straight away --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 949035b..e61ae34 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,10 +13,8 @@ matrix: language: generic before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade ; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install curl ; fi - - curl -L http://bootstrap.saltstack.org | sudo sh -s -- git develop + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install saltstack ; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -L http://bootstrap.saltstack.org | sudo sh -s -- git develop; fi install: - sudo mkdir -p /srv/salt/states