#!/bin/sh

set -e

THIS_PACKAGE=xkb-data
THIS_SCRIPT=postinst

# Remove the xkb cache to make sure it gets regenerated
if [ -d /var/lib/xkb/ ]; then
  rm -f /var/lib/xkb/*.xkm 2>/dev/null
fi



# vim:set ai et sw=2 ts=2 tw=80:
