From 9355aa9291c4e99cc252e068cc8813cc2d4fd261 Mon Sep 17 00:00:00 2001 From: "Matt T. Proud" Date: Tue, 10 Jul 2012 23:32:12 -0700 Subject: [PATCH] Simplifying the type of test statement for process of elimination. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 960c60e..9db23dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_install: - sudo apt-get remove -y --force-yes --purge golang-stable || true - sudo apt-get remove -y --force-yes --purge golang-weekly || true - sudo apt-get remove -y --force-yes --purge golang-tip || true - - [[ ! -x "$(which go)" ]] || (echo "Go is still present: $(which go)" ; exit 1) + - [ ! -x "$(which go)" ] || (echo "Go is still present: $(which go)" ; exit 1) install: - hg clone -u release https://code.google.com/p/go "${HOME}/go" >/dev/null 2>&1