diff options
author | obo <obo@openoffice.org> | 2011-03-18 07:22:29 +0100 |
---|---|---|
committer | obo <obo@openoffice.org> | 2011-03-18 07:22:29 +0100 |
commit | e3511dc343c944530c6c48e6990b4f4f8d522535 (patch) | |
tree | f80f473cf840edda84bdf33adc63b288db70b517 | |
parent | 5bda0f9a162f909ee7f818cf0a339fc64194ceee (diff) |
masterfix DEV300: #i10000# fix for LAN"
Notes
split repo tag: bootstrap_ooo/DEV300_m103
-rw-r--r-- | solenv/bin/cws.pl | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/solenv/bin/cws.pl b/solenv/bin/cws.pl index c613d13bcbb1..62a6b2763761 100644 --- a/solenv/bin/cws.pl +++ b/solenv/bin/cws.pl @@ -407,16 +407,9 @@ sub hg_clone_cws_or_milestone my $masterws = $cws->master(); my ($master_local_source, $master_lan_source); - if ($rep_type eq "ooo" || $rep_type eq "so") - { - $master_local_source = "$hg_local_source/" . $masterws; - $master_lan_source = "$hg_lan_source/" . $masterws; - } - else - { - $master_local_source = "$hg_local_source/master_".$rep_type."/".$masterws; - $master_lan_source = "$hg_lan_source/master_".$rep_type."/".$masterws; - } + + $master_local_source = "$hg_local_source/" . $masterws; + $master_lan_source = "$hg_lan_source/" . $masterws; my $milestone_tag; if ( $clone_milestone_only ) { |