Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ ct_test_app_dockerfile() {

# If app_url contains @, the string after @ is considered
# as a name of a branch to clone instead of the main/master branch
readarray -d "@" -t git_url_parts<<<"${app_url}"
IFS='@' read -ra git_url_parts <<< "${app_url}"

if [ -n "${git_url_parts[1]}" ]; then
git_clone_cmd="git clone --branch ${git_url_parts[1]} ${git_url_parts[0]} ${app_dir}"
Expand Down