[enh] Add warning about deprecated ynh_mkdir_tmp helper

This commit is contained in:
opi 2016-11-29 15:27:51 +01:00 committed by Weblate
parent cfef34a39f
commit 671fd047fb

View file

@ -70,5 +70,6 @@ ynh_bind_or_cp() {
# usage: ynh_mkdir_tmp
# | ret: the created directory path
ynh_mkdir_tmp() {
echo "This helper is deprecated, you should use 'mktemp -d' instead." >&2
mktemp -d
}