postgresql-init-dev-db: Add missing quotes.

These are necessary if the path contains spaces.
This commit is contained in:
Alex Vandiver 2024-06-16 15:32:29 +00:00 committed by Tim Abbott
parent ab6ae1099b
commit 1455a68aef
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ fi
# We need to remove the stamp file indicating that the database # We need to remove the stamp file indicating that the database
# is properly provisioned with migrations. # 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" rm -f "$uuid_var_path/$STATUS_FILE_NAME"
"${ROOT_POSTGRES[@]}" -v ON_ERROR_STOP=1 -e "$DEFAULT_DB" <<EOF "${ROOT_POSTGRES[@]}" -v ON_ERROR_STOP=1 -e "$DEFAULT_DB" <<EOF