Home | History | Annotate | Download | only in BuildSlaveSupport

Lines Matching full:sourcedir

52     my $sourceDir = sourceDir();
53 if (isSVNDirectory($sourceDir)) {
55 } elsif (isGitDirectory($sourceDir)) {
56 my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
64 my $sourceDir = sourceDir();
66 if (isSVNDirectory($sourceDir)) {
67 my $svnInfo = `LC_ALL=C svn info $sourceDir | grep URL:`;
69 } elsif (isGitDirectory($sourceDir)) {
70 my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
74 die "Unable to determine current SVN branch in $sourceDir" unless (defined $branch);