Trying to fix the dpkg warning: "/etc/bash_completion.d/yunohost is not a plain file or symlink"

This commit is contained in:
Kay0u 2022-03-08 18:04:47 +01:00
parent 93ed8efb17
commit 5e87f7d479
No known key found for this signature in database
GPG key ID: AE1DCADB6415A156

11
debian/preinst vendored Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e
if [ -e /etc/bash_completion.d/yunohost ] && [ ! -d /etc/bash_completion.d/yunohost ]; then
rm /etc/bash_completion.d/yunohost
fi
#DEBHELPER#
exit 0