X-Git-Url: https://rtime.felk.cvut.cz/gitweb/l4.git/blobdiff_plain/d1e11ef9d33b46388b8234795a9aacc92d1dbe23..8aa202a8eb6a3a1b12999429efa4f454c7b4e17d:/repomgr diff --git a/repomgr b/repomgr index 88eea37ea..444001ded 100755 --- a/repomgr +++ b/repomgr @@ -387,7 +387,7 @@ sub do_checkout(%) foreach my $pe (@path_elems) { - if (! -d "$path/$pe/.svn") + if (! -d "$path/$pe") { # if we find something from path_roots then switch to that my $changed_path = convert_path("$path/$pe", 0, @@ -417,7 +417,7 @@ sub do_checkout(%) } else { - my $cmd = "cd $path && svn update -r '$svnrev' --depth empty $pe"; + my $cmd = "cd $path && svn update -q -r '$svnrev' --depth empty $pe"; #print "cmd: $cmd\n"; system($cmd); die "svn update failed" if $?;