4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-06 14:39:35 +00:00

Merge branch 'version_1_0' of github.com:QuasarApp/CDQ into version_1_0

This commit is contained in:
Andrei Yankovich 2018-08-19 23:14:33 +03:00
commit 7cee38b201
2 changed files with 4 additions and 5 deletions

@ -8,7 +8,8 @@
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS += CQtDeployer \
QuasarAppLib
SUBDIRS += QuasarAppLib \
CQtDeployer
QuasarAppLib.file = $$PWD/QuasarAppLib/QuasarApp.pro

@ -75,7 +75,7 @@ bool Deploy::createRunScript() {
content = content.arg(QFileInfo(target).fileName());
QString fname = targetDir + QDir::separator() + QFileInfo(target).fileName() + ".sh";
QString fname = targetDir + QDir::separator() + "AppRun.sh";
QFile F(fname);
if (!F.open(QIODevice::WriteOnly)) {
@ -126,8 +126,6 @@ void Deploy::deploy() {
strip(targetDir + QDir::separator() + "plugins");
}
if (!createRunScript()) {
qCritical() << "run script not created!";
}