Adding member variables to check if customer repository was a fresh

clone, or if it was already existent.
This commit is contained in:
Gerhard Hoffmann 2023-10-30 15:09:33 +01:00
parent 99a99d95a1
commit 6b9b88ea19

View File

@ -144,13 +144,14 @@ class Worker : public QObject {
int m_ismasUpdateRequests;
QTimer m_waitForNewUpdates;
UpdateStatus m_updateStatus;
QStringList m_filesToUpdate;
QStringList m_filesToDownload;
bool m_updateProcessRunning;
int m_displayIndex;
int m_returnCode;
bool m_clone = false;
bool m_initialClone = false;
bool m_repairClone = false;
bool m_ismasTriggerActive = false;
MainWindow *m_mainWindow;
bool m_withoutIsmasDirectPort;
@ -282,7 +283,9 @@ private:
QStringList m_ismasMsg;
UPDATE_STEP m_currentStep;
static Worker *instance;
QStringList m_opkgCommands;
public:
QDebug CONSOLE(QStringList const &lst = QStringList()) {
m_debugMsg = lst;
return qDebug();