|
@@ -14,8 +14,10 @@ test_default_config
|
|
|
|
|
|
# Update deviceConfigPriorityDir to match new revision
|
|
|
PRIORITY_DIR=$(echo "$(sed -E "s#$(dirname ${SNAP_DATA})/(current|[0-9]+)#${SNAP_DATA}#g" <<< $(cat "${SNAP_DATA}/settings.json" | jq '.zwave.deviceConfigPriorityDir'))" | tr -d '"')
|
|
|
-
|
|
|
if [ -d $(dirname "${PRIORITY_DIR}") ]; then
|
|
|
jq --arg deviceConfigPriorityDir ${PRIORITY_DIR} '.zwave.deviceConfigPriorityDir = $deviceConfigPriorityDir' $SNAP_DATA/settings.json > $SNAP_DATA/tmp.json
|
|
|
mv $SNAP_DATA/tmp.json $SNAP_DATA/settings.json
|
|
|
fi
|
|
|
+
|
|
|
+# Update references to the external config directory
|
|
|
+sed -iE "s#$(dirname ${SNAP_DATA})/(current|[0-9]+)#${SNAP_DATA}/#g" $ZWAVEJS_EXTERNAL_CONFIG/devices/index.json
|