Add text-edit entry if git pull is successful.
This commit is contained in:
parent
c4f12ce75a
commit
d57914957d
@ -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?)");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user