10 lines
151 B
Plaintext
10 lines
151 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
if [ "$1" = configure ] && [ -d /etc/xdg/QtProject ] ; then
|
||
|
rmdir --ignore-fail-on-non-empty /etc/xdg/QtProject
|
||
|
fi
|