Skip to content
This repository has been archived by the owner on Feb 8, 2020. It is now read-only.

Commit

Permalink
Remove svn print messages
Browse files Browse the repository at this point in the history
These messages are helpful for debugging but we omit them for other
VCS so we'll omit them here too.
  • Loading branch information
mndrix committed Jan 17, 2017
1 parent 20ef0a8 commit 83cd9b3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/Test/Merges.pm
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ sub clone {
when ('hg') { system "hg clone $source $target" }
when ('svn') {
my $dir = getcwd;
print "svn clone ${source} to ${target}\n";
system "svn copy -m 'branch created' file://${dir}/svnrepo/${source} file://${dir}/svnrepo/${target}";
system "svn checkout file://${dir}/svnrepo/${target} ${target}";
}
Expand Down Expand Up @@ -164,7 +163,6 @@ sub perform_merge {
my $current_repo_dir=getcwd;
my $current_repo = basename($current_repo_dir);
my $source_repo = basename($source);
print "svn merge from $source_repo to $current_repo\n";
chdir '..';
my $dir = getcwd;
chdir "$current_repo";
Expand Down

0 comments on commit 83cd9b3

Please sign in to comment.