summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@nokia.com>2011-08-31 12:53:36 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-08-31 13:00:17 +0200
commita0f1d0a36fe068cd186eed27336435a930262edc (patch)
tree9a7c1f6ca3dfb28411d4ebe556998403dd148741 /installerbuilder
parent40f000f2434336ff98b5098c0fc0242ff51527af (diff)
No need to limit on directories
SDK Maintenance packaging takes an installer binary, currently breaks packaging on Linux at least Change-Id: I8cad0387d8db349c65ca3f3839f14c23943e9c51 Reviewed-on: http://codereview.qt.nokia.com/3944 Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/common/repositorygen.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/installerbuilder/common/repositorygen.cpp b/installerbuilder/common/repositorygen.cpp
index 8d0185cb7..d799e58df 100644
--- a/installerbuilder/common/repositorygen.cpp
+++ b/installerbuilder/common/repositorygen.cpp
@@ -273,9 +273,6 @@ void QInstaller::compressDirectory(const QStringList& paths, const QString& arch
foreach (QString path, paths) {
if (!QFileInfo(path).exists())
throw QInstaller::Error(QObject::tr("Folder %1 does not exist").arg(path));
-
- if (!QFileInfo(path).isDir())
- throw QInstaller::Error(QObject::tr("%1 is not a folder").arg(path));
}
QFile archive(archivePath);