simplepkg changelog
===================
+0.5pre3
+-------
+
+ - again, lots of bugfixes
+
+ - jail-commit:
+ - update a template just once if finds more than one entry
+ for a template in the jailist
+
0.5pre2
=======
echo "$BASENAME: executing template scripts..."
if [ -d "$TEMPLATE_BASE.s" ]; then
- for script in `ls $TEMPLATE_BASE.s/`; do
- if [ -x "$TEMPLATE_BASE.s/$script" ]; then
- exec $TEMPLATE_BASE.s/$script $1 $2
+ for command in `ls $TEMPLATE_BASE.s/`; do
+ if [ -x "$TEMPLATE_BASE.s/$command" ]; then
+ exec $TEMPLATE_BASE.s/$command $1 $2
fi
done
fi