linux 1.1.2

This commit is contained in:
Andrei Yankovich 2019-01-27 18:00:36 +03:00
parent 831ad07fb6
commit 13f8b22855
3 changed files with 7 additions and 5 deletions

@ -1 +1 @@
Subproject commit 97757c02b1b29bacc311f7704d37b208781957f4
Subproject commit c099f54e092299cef878027d698cb3131c3dfbe4

View File

@ -243,7 +243,9 @@ void Deploy::deploy() {
}
if (!onlyCLibs && !QuasarAppUtils::Params::isEndable("noTranslations")) {
copyTranslations(DeployUtils::extractTranslation(QtLibs));
if (!copyTranslations(DeployUtils::extractTranslation(QtLibs))) {
qWarning() << " copy TR ERROR";
}
}
settings.setValue(targetDir, deployedFiles);
@ -520,8 +522,8 @@ void Deploy::copyPlugins(const QStringList &list) {
bool Deploy::copyTranslations(QStringList list) {
QDir dir(DeployUtils::qtDir);
if (!dir.cd("translations")) {
QDir dir(translationDir);
if (!dir.exists() || list.isEmpty()) {
return false;
}

View File

@ -6,7 +6,7 @@
#
name: cqtdeployer # you probably want to 'snapcraft register <name>'
version: '1.1.1' # just for humans, typically '1.2+git' or '1.3.2'
version: '1.1.2' # just for humans, typically '1.2+git' or '1.3.2'
summary: deploy your qt projects # 79 char long summary
description: |
Console app for deploy qt libs.