Add text-edit entry if git pull is successful.

This commit is contained in:
Gerhard Hoffmann 2023-08-04 13:50:19 +02:00
parent c4f12ce75a
commit d57914957d

View File

@ -465,10 +465,11 @@ bool Worker::filesToUpdate() {
} else {
emit appendText(QString("\nFound 1 file to update "), UPDATE_STEP_DONE);
}
if (!m_gc.gitPull()) {
emit showErrorMessage("files to update", "pulling files failed");
if (m_gc.gitPull()) {
emit appendText(QString("\nFetch changes files "), UPDATE_STEP_DONE);
return true;
}
return true;
emit showErrorMessage("files to update", "pulling files failed");
} else {
emit showErrorMessage("files to update", "no files to update (checked-in any files?)");
}