Skip to content

Commit 7da5033

Browse files
committed
add way to specify individual download sources
1 parent 742ece8 commit 7da5033

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jenkins/common/evaluate_force.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@ if test -n "$SOURCE"; then
99
RTA_ARGS+=(--source "$SOURCE" --other-source "$SOURCE")
1010
fi
1111
else
12-
RTA_ARGS+=(--remote-host 172.17.4.0)
12+
if test -n "$OLD_SOURCE$NEW_SOURCE"; then
13+
RTA_ARGS+=(--old-source "$OLD_SOURCE" --new-source "$NEW_SOURCE")
14+
else
15+
RTA_ARGS+=(--remote-host 172.17.4.0)
16+
fi
1317
fi

0 commit comments

Comments
 (0)