From 19583c2877cd7ec610c974454aeb88444a5b29a8 Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Fri, 3 Feb 2023 15:03:34 +0100 Subject: [PATCH] Use existing ISC_{USER|PASSWORD} if available --- test/execsql.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/execsql.sh b/test/execsql.sh index 7209c82..e58fbf3 100755 --- a/test/execsql.sh +++ b/test/execsql.sh @@ -387,8 +387,8 @@ case $? in 2) ShowHelp; exit;; esac -export ISC_USER=SYSDBA -export ISC_PASSWORD=masterkey +if [[ -z $ISC_USER ]]; then export ISC_USER=SYSDBA; fi +if [[ -z $ISC_PASSWORD ]]; then export ISC_PASSWORD=masterkey; fi echo "$(date) Started"