diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-05 21:12:02 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-05 21:12:02 +0000 |
commit | 551a94bb3859f5532a2a7394cc322f0b2612b3eb (patch) | |
tree | b6df5403b9f97d34500906a6a80d4c6e2cda95f1 | |
parent | cde348ccfd25b4af23ee44b6fd808355d52f7ded (diff) | |
download | simplepkg-551a94bb3859f5532a2a7394cc322f0b2612b3eb.tar.gz simplepkg-551a94bb3859f5532a2a7394cc322f0b2612b3eb.tar.bz2 |
templatepkg: small fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@263 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-x | trunk/src/templatepkg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg index aaa3eff..88dd4db 100755 --- a/trunk/src/templatepkg +++ b/trunk/src/templatepkg @@ -196,14 +196,14 @@ function template_create { svn mkdir $TEMPLATE_BASE.d info_commit="yes" else - mkdir $TEMPLATE_BASE.d + mkdir -p $TEMPLATE_BASE.d fi if ! svn_check $TEMPLATE_BASE.s; then svn mkdir $TEMPLATE_BASE.s info_commit="yes" else - mkdir $TEMPLATE_BASE.d + mkdir -p $TEMPLATE_BASE.d fi if ! svn_check $TEMPLATE_BASE.template; then |