aboutsummaryrefslogtreecommitdiff
path: root/trunk
diff options
context:
space:
mode:
Diffstat (limited to 'trunk')
-rw-r--r--trunk/doc/CHANGELOG2
-rw-r--r--trunk/src/createpkg4
2 files changed, 5 insertions, 1 deletions
diff --git a/trunk/doc/CHANGELOG b/trunk/doc/CHANGELOG
index ca17efa..4c5b141 100644
--- a/trunk/doc/CHANGELOG
+++ b/trunk/doc/CHANGELOG
@@ -44,7 +44,7 @@ simplepkg changelog
- config() on postinstall_script now accepting .dist and .sample config file extensions
- added git_source section
- createpkg:
- - new options --status, --update and --commit to manage subversion repository
+ - new options --import, --status, --update and --commit to manage subversion repository
- subversion integration
- minor changes
- renamed config parameter CREATE_ARCH to CREATEPKG_ARCH
diff --git a/trunk/src/createpkg b/trunk/src/createpkg
index 90fda8e..52116d9 100644
--- a/trunk/src/createpkg
+++ b/trunk/src/createpkg
@@ -358,6 +358,10 @@ function repository_import {
return $EXIT_CODE
fi
+ if ! echo $repository | grep -q ":"; then
+ repository="file://$repository"
+ fi
+
repository_type="`echo $repository | cut -d : -f 1`"
repository_path="`echo $repository | cut -d : -f 2`"