Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit f92c5a0

Browse files
authored
Fix wrong truncation of DB_URL (#1345)
1 parent 20f32bd commit f92c5a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/management_api/init.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ shopt -s extglob
4343
while [[ $# -gt 0 ]]; do
4444
case $1 in
4545
*(-)dburl=* )
46-
DB_URL=$(echo $1 | cut -d '=' -f 2)
46+
DB_URL=$(echo $1 | cut -d '=' -f 2-)
4747
echo -e "\x1b[36musing $DB_URL\x1b[0m"
4848
;;
4949
*(-)help )

0 commit comments

Comments
 (0)