Add quotes to variable expansions in ql.sh

Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-30 16:43:04 +00:00
parent 7ea2d362f0
commit b87fe2ebf0

View File

@ -5,5 +5,5 @@ if [[ -z "$QL_DIR" ]]; then
exit 1 exit 1
fi fi
dir_shell=$QL_DIR/shell dir_shell="$QL_DIR/shell"
. $dir_shell/update.sh "$@" . "$dir_shell/update.sh" "$@"