#!/bin/sh
#
# This allows wiping of the complete QML app cache on OTA upgrades

for cache in /home/*/.cache/*/qmlcache/ /home/*/.cache/*/qtshadercache-*/; do
    if [ -d "${cache}" ]; then
        rm -rf "${cache}"
    fi
done
