From 6fc9d5191a19c590d9b4b205138a6823c3852c9e Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 22 Jun 2018 10:30:07 -0500 Subject: [PATCH] Move create/destroy db scripts to bash There was a "[[: not found" error with sh --- test/create_test_db | 2 +- test/destroy_test_db | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/create_test_db b/test/create_test_db index 8d0bc8ba5..0b4019ff2 100755 --- a/test/create_test_db +++ b/test/create_test_db @@ -1,4 +1,4 @@ -#! /bin/sh +#! /usr/bin/env bash if [ -z "$1" ] then echo "Please supply the connection uri for the user with create database privileges" diff --git a/test/destroy_test_db b/test/destroy_test_db index 56ee2df92..74c51641a 100755 --- a/test/destroy_test_db +++ b/test/destroy_test_db @@ -1,4 +1,4 @@ -#! /bin/sh +#! /usr/bin/env bash if [ -z "$1" ] then echo "Please supply the connection uri for the user with create database privileges"