From 1455a68aefef88c8f7b6388936c042b80a241e7f Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Sun, 16 Jun 2024 15:32:29 +0000 Subject: [PATCH] postgresql-init-dev-db: Add missing quotes. These are necessary if the path contains spaces. --- tools/setup/postgresql-init-dev-db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/setup/postgresql-init-dev-db b/tools/setup/postgresql-init-dev-db index d9be0bdcd0..c3500da1c6 100755 --- a/tools/setup/postgresql-init-dev-db +++ b/tools/setup/postgresql-init-dev-db @@ -61,7 +61,7 @@ fi # We need to remove the stamp file indicating that the database # is properly provisioned with migrations. -uuid_var_path=$($(readlink -f "$(dirname "$0")/../../scripts/lib/zulip_tools.py") get_dev_uuid) +uuid_var_path=$("$(readlink -f "$(dirname "$0")/../../scripts/lib/zulip_tools.py")" get_dev_uuid) rm -f "$uuid_var_path/$STATUS_FILE_NAME" "${ROOT_POSTGRES[@]}" -v ON_ERROR_STOP=1 -e "$DEFAULT_DB" <