#!/bin/bash
# postinst script for spotify
#
# see: dh_installdeb(1)

set -e

if [ "$1" = "configure" ]; then
	chown -R root:adm /usr/share/wine/programs/spotify
	chmod -R g+w /usr/share/wine/programs/spotify
fi

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#


exit 0
