yunohost/data/apps/helpers
2015-09-03 13:56:25 +02:00

7 lines
209 B
Bash

# -*- shell-script -*-
# TODO : use --regex to validate against a namespace
for helper in $(run-parts --list /usr/share/yunohost/apps/helpers.d 2>/dev/null) ; do
[ -r $helper ] && . $helper || true
done