[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 4/4] build_clone: Move git_massage_url to build_url_vcs
The effect is that ts-xen-build (the only other caller of build_url_vcs) now gets the massaged rather than unmassaged urls. Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- Osstest/TestSupport.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 485a29a..d0d6ef3 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -1287,6 +1287,10 @@ sub build_url_vcs ($) { } } + if (($vcs // '<unknown>') eq 'git') { + $tree = git_massage_url($tree); + } + return ($tree, $vcs); } @@ -1314,11 +1318,9 @@ END END } elsif ($vcs eq 'git') { - my $eff_tree = git_massage_url($tree); - target_cmd_build($ho, $timeout, $builddir, <<END. $rm - git clone '$eff_tree' $subdir + git clone '$tree' $subdir cd $subdir END (length($r{"revision_$which"}) ? <<END : '')); -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |