mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 11:14:33 +00:00
linux 1.1.2
This commit is contained in:
parent
831ad07fb6
commit
13f8b22855
@ -1 +1 @@
|
||||
Subproject commit 97757c02b1b29bacc311f7704d37b208781957f4
|
||||
Subproject commit c099f54e092299cef878027d698cb3131c3dfbe4
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user