Browse Source

95terminfo/module-setup.sh: no need to call "find"

master
Harald Hoyer 13 years ago
parent
commit
ddd01008ff
  1. 2
      modules.d/95terminfo/module-setup.sh

2
modules.d/95terminfo/module-setup.sh

@ -10,7 +10,7 @@ install() {
done done


if [ -d ${_terminfodir} ]; then if [ -d ${_terminfodir} ]; then
for f in $(find ${_terminfodir} -type f); do for f in ${_terminfodir}/*/*; do
inst_simple $f inst_simple $f
done done
fi fi

Loading…
Cancel
Save