aboutsummaryrefslogtreecommitdiff
path: root/trunk/src/templatepkg
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/templatepkg')
-rwxr-xr-xtrunk/src/templatepkg6
1 files changed, 3 insertions, 3 deletions
diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg
index a8045ee..ad7306f 100755
--- a/trunk/src/templatepkg
+++ b/trunk/src/templatepkg
@@ -384,11 +384,11 @@ function template_update {
if [ -f $TEMPLATE ]; then
if ! `grep -v -e "^#" $TEMPLATE | cut -d : -f 1 | awk '{ print $1 }' | grep -q -e "^$pack\$"`; then
echo $pack >> $TEMPLATE
- echo Added $pack # on $TEMPLATE
+ echo Adding $pack # on $TEMPLATE
fi
else
echo $pack >> $TEMPLATE
- echo Added $pack # on $TEMPLATE
+ echo Adding $pack # on $TEMPLATE
fi
done
@@ -409,7 +409,7 @@ function template_update {
sed "/^$pack$/d" $TEMPLATE | sed "/^$pack $/d" | sed "/^$pack:*/d" | sed "/^$pack */d" > $TEMPLATE.tmp
cat $TEMPLATE.tmp > $TEMPLATE
rm -f $TEMPLATE.tmp
- echo Removed $pack # from $TEMPLATE
+ echo Removing $pack # from $TEMPLATE
fi
fi