Skip to content

Commit

Permalink
Merge pull request #1901 from subutai-io/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Mike Savochkin authored Nov 9, 2019
2 parents 7356fd9 + 3d59985 commit 009d5cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions hub/src/updater/ExecutableUpdater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ CExecutableUpdater::replace_executables(bool was_successful_downloaded) {
CSystemCallWrapper::give_write_permissions(dir);

do {
if (!src.exists()) {
qCritical("Source file is missins at %s", m_src_file_str.toStdString().c_str());
break;
}
if (dst.exists()) {
QFile ftmp(tmp);
if (ftmp.exists() && !ftmp.remove()) {
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.3.4
7.3.5

0 comments on commit 009d5cd

Please sign in to comment.