diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-05 20:31:26 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-05 20:31:26 +0000 |
commit | 2813c4bee29616f50f45efe86fe82de763593235 (patch) | |
tree | ab125f520d5c91d82a9ef311d53fbbb3e1803dc4 /trunk | |
parent | 87fa7feafdf416bc28a425385c513344ddb8a52d (diff) | |
download | simplepkg-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')
-rwxr-xr-x | trunk/src/templatepkg | 8 |
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 } |