aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2009-01-16 17:22:48 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2009-01-16 17:22:48 +0000
commite208d6a09605e467366329a8560d4d0cc65f2775 (patch)
treed671f122180361630cfed8572fbc0a9f0f0b81e9
parente459c92573a0799b173c8e6edf531441e0f6d044 (diff)
downloadsimplepkg-e208d6a09605e467366329a8560d4d0cc65f2775.tar.gz
simplepkg-e208d6a09605e467366329a8560d4d0cc65f2775.tar.bz2
minor fix at createpkg --import
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@748 04377dda-e619-0410-9926-eae83683ac58
-rw-r--r--trunk/src/createpkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg
index 93cc5ce..dd6e45d 100644
--- a/trunk/src/createpkg
+++ b/trunk/src/createpkg
@@ -373,7 +373,7 @@ function repository_import {
if [ "$repository_type" == "file" ] && [ ! -d "$repository_path" ]; then
echo "Creating subversion repository $repository..."
- svnadmin create $repository --fs-type fsfs
+ svnadmin create $repository_path --fs-type fsfs
if [ "$?" != "0" ]; then
EXIT_CODE="1"
return $EXIT_CODE