From 4636dd8dcaf0af5eaa165df6d7c67ece2f21907e Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Thu, 20 Apr 2017 14:07:43 +0000 Subject: [PATCH] Make ci_integration.sh use bash The ci_integration.sh script uses double brackets ('[[') test which is not portable. For instance, running it with dash you get the error: ./ci/ci_integration.sh: 10: ./ci/ci_integration.sh: [[: not found This change makes the script use bash, that supports this kind of test. Fixes #6939 --- ci/ci_integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ci_integration.sh b/ci/ci_integration.sh index de26ea120..d8b6fa6b8 100755 --- a/ci/ci_integration.sh +++ b/ci/ci_integration.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e # Since we are using the system jruby, we need to make sure our jvm process