From 100bf494ac1546b572833d9626627f0f66189511 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 8 Jun 2018 16:46:04 -0500 Subject: [PATCH] Move database creation/destruction scripts to sh Bash is not available on /bin/bash on some linux distros like NixOS --- 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 102dba6e8..8d0bc8ba5 100755 --- a/test/create_test_db +++ b/test/create_test_db @@ -1,4 +1,4 @@ -#! /bin/bash +#! /bin/sh 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 202e5e6d6..56ee2df92 100755 --- a/test/destroy_test_db +++ b/test/destroy_test_db @@ -1,4 +1,4 @@ -#! /bin/bash +#! /bin/sh if [ -z "$1" ] then echo "Please supply the connection uri for the user with create database privileges"