diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-04 02:32:04 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-04 02:32:04 +0000 |
commit | c1dc33f3db8ca32442676be7be7b5d88d3389cc6 (patch) | |
tree | 977955e61e3a081c89a81c8d097a3efe78b7e35a /trunk/src/templatepkg | |
parent | b7e40f8d775251fe6904c7f297a11b6357f74cf4 (diff) | |
download | simplepkg-c1dc33f3db8ca32442676be7be7b5d88d3389cc6.tar.gz simplepkg-c1dc33f3db8ca32442676be7be7b5d88d3389cc6.tar.bz2 |
templatepkg smal fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@217 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src/templatepkg')
-rwxr-xr-x | trunk/src/templatepkg | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg index 910086c..1495ae2 100755 --- a/trunk/src/templatepkg +++ b/trunk/src/templatepkg @@ -78,8 +78,10 @@ function check_svn_repo { if [ ! -z "$1" ]; then if echo $1 | grep -q -v -e "^svn://"; then if echo $1 | grep -q -v -e "^svn+ssh://"; then - echo $BASENAME: invalid repository URL $1 - return 1 + if echo $1 | grep -q -v -e "^file://"; then + echo $BASENAME: invalid repository URL $1 + return 1 + fi fi fi else |