From b6808b1e33bc5b02b9acfe6b0c69be168b1afb51 Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Wed, 23 Oct 2019 13:55:49 +0300 Subject: Enclose environmentVariables in quotations Without quotations, the yaml file parsing fails on Android with: Could not parse config file 'assets:/am-config-neptune.yaml', line 20, column 29: mapping values are not allowed in this context. Change-Id: Ie910aad9cdd0f7ab1da134835602b9ec51f0cbf8 Reviewed-by: Dominik Holland --- am-config-neptune.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'am-config-neptune.yaml') diff --git a/am-config-neptune.yaml b/am-config-neptune.yaml index 445afbb4..042b9506 100644 --- a/am-config-neptune.yaml +++ b/am-config-neptune.yaml @@ -17,13 +17,13 @@ runtimes: qml: importPaths: [ "${CONFIG_PWD}/imports_shared" ] environmentVariables: - QT_PLUGIN_PATH: ${CONFIG_PWD} - SERVER_CONF_PATH: ${CONFIG_PWD}/server.conf + QT_PLUGIN_PATH: "${CONFIG_PWD}" + SERVER_CONF_PATH: "${CONFIG_PWD}/server.conf" native: importPaths: [ "${CONFIG_PWD}/imports_shared" ] environmentVariables: - QT_PLUGIN_PATH: ${CONFIG_PWD} - SERVER_CONF_PATH: ${CONFIG_PWD}/server.conf + QT_PLUGIN_PATH: "${CONFIG_PWD}" + SERVER_CONF_PATH: "${CONFIG_PWD}/server.conf" # ... as well as the SystemUI -- cgit v1.2.3