diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-02-09 21:16:29 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-02-09 21:16:29 +0000 |
commit | 98829a5f49427f79f08c4d33effbf4fbd6cce970 (patch) | |
tree | 57dc926beb6ef566e92ba73b64f6dde6f8337905 /src | |
parent | 330a79d11c48aa8920c4efd2504fe4cc3f762a47 (diff) | |
download | simplepkg-98829a5f49427f79f08c4d33effbf4fbd6cce970.tar.gz simplepkg-98829a5f49427f79f08c4d33effbf4fbd6cce970.tar.bz2 |
templatepkg: small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@174 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'src')
-rwxr-xr-x | src/templatepkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templatepkg b/src/templatepkg index 1634d85..d2a23aa 100755 --- a/src/templatepkg +++ b/src/templatepkg @@ -143,7 +143,7 @@ function template_add { mkdir -p $TEMPLATE_BASE.d/`dirname $file`/ destination="`echo $TEMPLATE_BASE.d/$file | sed -e 's/\/$//'`" - cp -a echo $jail/$file $destination + cp -a $jail/$file $destination if [ "$TEMPLATES_UNDER_SVN" == "1" ]; then ( cd $TEMPLATE_BASE.d && svn add $file ) echo $BASENAME: please run jail-commit to add $file into the svn repository |