diff options
-rw-r--r-- | bin/build_release_package.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/build_release_package.pl b/bin/build_release_package.pl index aecfb20..0a35062 100644 --- a/bin/build_release_package.pl +++ b/bin/build_release_package.pl @@ -47,6 +47,13 @@ if (@ARGV) $epocroot = "\\"; } + if ($epocroot =~ m/.*[^\\]$/) + { + $epocroot = "${epocroot}\\"; + } + + $epocroot =~ s/.://; + my $releaseDirQt = "${releaseDir}\\qt"; my $releaseDirEpocroot = "${releaseDir}\\epocroot"; my $releaseDirSis = "${releaseDir}\\sis"; @@ -128,6 +135,10 @@ if (@ARGV) else { $destinationPath =~ s/.://; + if ($epocroot !~ m/\\/) + { + $destinationPath =~ s/($epocroot)//i; + } $destinationPath = $releaseDirEpocroot.$destinationPath; } |