diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-01-05 13:02:04 +0100 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-01-05 14:47:29 +0100 |
commit | 4a3c1f0741ce60d218a80348ba95438e26d3423b (patch) | |
tree | f9c59dcdc8eba2f7d4c2ed48b00b76936b8d52e6 | |
parent | 062b4bee5eb06483cef3dde3f28a5d12599840d3 (diff) |
Also copy updater.ini (so that updater progress UI will actually shown up)
Change-Id: I2805087da196aa7153850345803999af4de313df
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161660
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
-rw-r--r-- | desktop/source/app/updater.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx index 3221d688a47f..12bb4969a68c 100644 --- a/desktop/source/app/updater.cxx +++ b/desktop/source/app/updater.cxx @@ -145,6 +145,7 @@ void CopyUpdaterToTempDir(const OUString& rInstallDirURL, const OUString& rTempD { OUString aUpdaterName = OUString::fromUtf8(pUpdaterName); CopyFileToDir(rTempDirURL, aUpdaterName, rInstallDirURL); + CopyFileToDir(rTempDirURL, u"updater.ini"_ustr, rInstallDirURL); } #ifdef UNX |