aboutsummaryrefslogtreecommitdiff
path: root/trunk/src/templatepkg
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2007-04-05 20:31:26 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2007-04-05 20:31:26 +0000
commit2813c4bee29616f50f45efe86fe82de763593235 (patch)
treeab125f520d5c91d82a9ef311d53fbbb3e1803dc4 /trunk/src/templatepkg
parent87fa7feafdf416bc28a425385c513344ddb8a52d (diff)
downloadsimplepkg-2813c4bee29616f50f45efe86fe82de763593235.tar.gz
simplepkg-2813c4bee29616f50f45efe86fe82de763593235.tar.bz2
templatepkg: cosmetic changes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@258 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src/templatepkg')
-rwxr-xr-xtrunk/src/templatepkg8
1 files changed, 4 insertions, 4 deletions
diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg
index 0680612..e4f3f2d 100755
--- a/trunk/src/templatepkg
+++ b/trunk/src/templatepkg
@@ -474,14 +474,14 @@ function template_list {
ls="`ls $BASE_CONF/defaults/templates/$1 2> /dev/null`"
if [ "$?" == "0" ]; then
- echo Default templates:
- echo "$ls"
+ ls="`echo $ls | xargs`"
+ echo "Default templates: $ls"
fi
ls="`ls $BASE_CONF/templates/$1 2> /dev/null`"
if [ "$?" == "0" ]; then
- echo Custom templates:
- echo "$ls"
+ ls="`echo $ls | xargs`"
+ echo "Custom templates: $ls"
fi
}