Fix uri template

This commit is contained in:
Daniel Berteaud 2013-11-18 21:06:34 +01:00
parent be43977281
commit 5ee32bf478
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
my $uri = $dl{'Uri'} || "https://$SystemName.$DomainName/dl";
$uri .= '/' if ($uri !~ !/$!);
$uri .= '/' if ($uri !~ /\/$/);
$OUT .= "\$masterPath = '$uri';";
}