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
16 changes: 8 additions & 8 deletions src/tests/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ handle_arguments_local() {
local arg="$1"
local parts=(${arg//:/ })
if [[ ${#parts[@]} -eq 1 ]]; then
shift
__BuildTestProject="$__BuildTestProject$1%3B"
__BuildTestProject="$__BuildTestProject$2%3B"
__ShiftArgs=1
else
__BuildTestProject="$__BuildTestProject${parts[1]}%3B"
fi
Expand All @@ -246,8 +246,8 @@ handle_arguments_local() {
local arg="$1"
local parts=(${arg//:/ })
if [[ ${#parts[@]} -eq 1 ]]; then
shift
__BuildTestDir="$__BuildTestDir$1%3B"
__BuildTestDir="$__BuildTestDir$2%3B"
__ShiftArgs=1
else
__BuildTestDir="$__BuildTestDir${parts[1]}%3B"
fi
Expand All @@ -257,8 +257,8 @@ handle_arguments_local() {
local arg="$1"
local parts=(${arg//:/ })
if [[ ${#parts[@]} -eq 1 ]]; then
shift
__BuildTestTree="$__BuildTestTree$1%3B"
__BuildTestTree="$__BuildTestTree$2%3B"
__ShiftArgs=1
else
__BuildTestTree="$__BuildTestTree${parts[1]}%3B"
fi
Expand Down Expand Up @@ -300,8 +300,8 @@ handle_arguments_local() {
local arg="$1"
local parts=(${arg//:/ })
if [[ ${#parts[@]} -eq 1 ]]; then
shift
__BuildLogRootName="$1"
__BuildLogRootName="$2"
__ShiftArgs=1
else
__BuildLogRootName="${parts[1]}"
fi
Expand Down