From 9d4b2253ea6f2677c761fc99c7aa0c606fdc8092 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 4 Dec 2011 22:53:07 +0100 Subject: [PATCH] Add missing / --- src/lib/Hydra/Helper/AddBuilds.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/Hydra/Helper/AddBuilds.pm b/src/lib/Hydra/Helper/AddBuilds.pm index 2adfb4b9..00588fcc 100644 --- a/src/lib/Hydra/Helper/AddBuilds.pm +++ b/src/lib/Hydra/Helper/AddBuilds.pm @@ -195,8 +195,7 @@ sub fetchInputSVN { # No, do a checkout. The working copy is reused between # invocations to speed things up. - mkpath(scmPath . "/svn"); - my $wcPath = scmPath . "/svn" . sha256_hex($uri) . "/svn-checkout"; + my $wcPath = scmPath . "/svn/" . sha256_hex($uri) . "/svn-checkout"; print STDERR "checking out Subversion input ", $name, " from $uri revision $revision into $wcPath\n";