diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2009-01-16 17:23:29 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2009-01-16 17:23:29 +0000 |
commit | 412d2c1c20d7536f7fb8c56645dd70715defb3f7 (patch) | |
tree | 3e37b8b78f91abf6576c4cc7bbc3ffd282fea896 | |
parent | e208d6a09605e467366329a8560d4d0cc65f2775 (diff) | |
download | simplepkg-412d2c1c20d7536f7fb8c56645dd70715defb3f7.tar.gz simplepkg-412d2c1c20d7536f7fb8c56645dd70715defb3f7.tar.bz2 |
another minor fix at createpkg --import
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@749 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r-- | trunk/src/createpkg | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index dd6e45d..e370fc1 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -373,6 +373,7 @@ function repository_import { if [ "$repository_type" == "file" ] && [ ! -d "$repository_path" ]; then echo "Creating subversion repository $repository..." + mkdir -p `dirname $repository_path` svnadmin create $repository_path --fs-type fsfs if [ "$?" != "0" ]; then EXIT_CODE="1" |