Browse code

Remove additional '/' in Q_PLUGIN_EXTRA_CONF_FILES

Currently there is added an obsolote/wrong '/' when passing
Q_PLUGIN_EXTRA_CONF_FILES to the service start arguments.
Thats not a problem when using absolute paths, but wrong for
relative paths. This patch removes that extra '/'.

Change-Id: I2136d39889eaf83ecfcc711c733e95e261f455e0
Closes-Bug: #1572192

Tom Patzig authored on 2016/04/20 00:02:34
Showing 1 changed files
... ...
@@ -387,7 +387,7 @@ function _determine_config_server {
387 387
     local cfg_file
388 388
     local opts="--config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE"
389 389
     for cfg_file in ${Q_PLUGIN_EXTRA_CONF_FILES[@]}; do
390
-        opts+=" --config-file /$cfg_file"
390
+        opts+=" --config-file $cfg_file"
391 391
     done
392 392
     echo "$opts"
393 393
 }