mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
11 lines
176 B
Bash
11 lines
176 B
Bash
#!/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
|