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

Commit

Permalink
Fix wrong truncation of DB_URL (#1345)
Browse files Browse the repository at this point in the history
  • Loading branch information
vipcxj authored Oct 16, 2023
1 parent 20f32bd commit f92c5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/management_api/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ shopt -s extglob
while [[ $# -gt 0 ]]; do
case $1 in
*(-)dburl=* )
DB_URL=$(echo $1 | cut -d '=' -f 2)
DB_URL=$(echo $1 | cut -d '=' -f 2-)
echo -e "\x1b[36musing $DB_URL\x1b[0m"
;;
*(-)help )
Expand Down

0 comments on commit f92c5a0

Please sign in to comment.