summaryrefslogtreecommitdiff
path: root/infrastructure/BoxPlatform.pm.in
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure/BoxPlatform.pm.in')
-rw-r--r--infrastructure/BoxPlatform.pm.in13
1 files changed, 11 insertions, 2 deletions
diff --git a/infrastructure/BoxPlatform.pm.in b/infrastructure/BoxPlatform.pm.in
index ef2340fb..f5c55f25 100644
--- a/infrastructure/BoxPlatform.pm.in
+++ b/infrastructure/BoxPlatform.pm.in
@@ -68,8 +68,17 @@ BEGIN
}
}
close INFO;
- $svnurl =~ m!box/(.+)$!;
- my $svndir = $1;
+
+ my $svndir;
+ if ($svnurl =~ m!/box/(.+)$!)
+ {
+ $svndir = $1;
+ }
+ elsif ($svnurl =~ m'/(boxi/.+)/boxi/boxbackup')
+ {
+ $svndir = $1;
+ }
+
$svndir =~ tr/0-9A-Za-z/_/c;
$product_version =~ s/USE_SVN_VERSION/$svndir.'_'.$svnversion/e;
}