Fix ynh_remove_app_dependencies too...

This commit is contained in:
Maniack Crudelis 2017-03-02 23:57:02 +01:00 committed by GitHub
parent 7ade94e7e3
commit 4dfde86e1a

View file

@ -136,6 +136,6 @@ EOF
#
# usage: ynh_remove_app_dependencies
ynh_remove_app_dependencies () {
dep_app=${app/_/-} # Replace all '_' by '-'
dep_app=${app//_/-} # Replace all '_' by '-'
ynh_package_autoremove ${dep_app}-ynh-deps # Remove the fake package and its dependencies if they not still used.
}