From ab2f47eb710aa4c7e93c1624c488c95f44c5add9 Mon Sep 17 00:00:00 2001
From: Johann <git@johann-hofmann.com>
Date: Thu, 12 Nov 2015 23:47:24 +0100
Subject: [PATCH] Try fixing OSX builds

... that I broke by introducing travis-cargo.
---
 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index df218c37115..4522344e1ca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,12 +21,12 @@ addons:
 before_script:
 - |
   pip install 'travis-cargo<0.2' --user &&
-  export PATH=$HOME/.local/bin:$PATH
+  export PATH=$HOME/.local/bin:/usr/local/bin:$PATH
 
 script:
 - |
-  travis-cargo build &&
-  travis-cargo test
+  cargo build &&
+  cargo test
 
 after_success:
 - travis-cargo coveralls --no-sudo