Skip to content

Commit

Permalink
dbeaver/dbeaver-devops#823 removed unbound variable exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mayerro committed Nov 23, 2023
1 parent d958ef5 commit 65549b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/build-backend.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -Eeuo pipefail
set -Eeo pipefail

# #command line arguments
# CONFIGURATION_PATH=${1-"../config/sample-databases/DefaultConfiguration"}
Expand Down Expand Up @@ -41,9 +41,9 @@ cp -rp ../server/product/web-server/target/products/io.cloudbeaver.product/all/a
cp -p ./scripts/* ./cloudbeaver
mkdir cloudbeaver/samples

if [[ -z "${SAMPLE_DATABASE_PATH}" ]]; then
if [[ -z $SAMPLE_DATABASE_PATH ]]; then
SAMPLE_DATABASE_PATH=""
else
else
mkdir cloudbeaver/samples/db
cp -rp "${SAMPLE_DATABASE_PATH}" cloudbeaver/samples/
fi
Expand Down

0 comments on commit 65549b1

Please sign in to comment.