From 95c2f226b122c7fdb77c6e9085b1fbd02189db03 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Wed, 2 Aug 2017 05:40:47 +0200 Subject: updater: fix incorrect installation directory path With this change one step updates are finally working correctly. Change-Id: I41a33b670039adc85a24de713bd0938d99da6662 Reviewed-on: https://gerrit.libreoffice.org/40660 Tested-by: Jenkins Reviewed-by: Markus Mohrhard --- desktop/source/app/updater.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'desktop/source/app/updater.cxx') diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx index 16e847d50df7..7e328a1a68d3 100644 --- a/desktop/source/app/updater.cxx +++ b/desktop/source/app/updater.cxx @@ -154,9 +154,8 @@ char** createCommandLine() } { // the actual update directory - OUString aInstallPath = getPathFromURL(aInstallDir); - Updater::log("Install Dir: " + aInstallPath); - createStr(aInstallPath, pArgs, 2); + Updater::log("Install Dir: " + aInstallDir); + createStr(aInstallDir, pArgs, 2); } { // the temporary updated build -- cgit