From 5ce5eb5be6f3f0a8754c5cbe8c476070a2207517 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 26 May 2020 15:20:25 +0200 Subject: [PATCH] ci: make prepare.sh use /bin/bash There are a few non-POSIX shell extensions used. So use Bash to run the script. Signed-off-by: Niels de Vos --- prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.sh b/prepare.sh index c2ff11fc0..cde460159 100755 --- a/prepare.sh +++ b/prepare.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # In case no value is specified, default values will be used. gitrepo="https://github.com/ceph/ceph-csi"