aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@penguin.kitenet.net>2008-08-03 14:21:43 -0400
committerJoey Hess <joey@penguin.kitenet.net>2008-08-03 14:21:43 -0400
commitd9db5f2def7a1dd2c8e76195df1ea1a988b6b79e (patch)
tree21305c2581283649bbf496e737bad5b9880160f8
parenteadff687abbec442423967d5cba3bcfb606dc1a9 (diff)
downloadikiwiki-d9db5f2def7a1dd2c8e76195df1ea1a988b6b79e.tar
ikiwiki-d9db5f2def7a1dd2c8e76195df1ea1a988b6b79e.tar.gz
Bail if both srcdir and repository are not specified.
-rw-r--r--debian/changelog2
-rwxr-xr-xikiwiki-makerepo6
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index f40701691..b784c95b2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,6 +12,8 @@ ikiwiki (2.60) UNRELEASED; urgency=low
* ikiwiki-update-wikilist: Add -r switch to remove. Default behavior is now
always to add.
* Start moving admin preferences from the web interface to the setup file.
+ * ikiwiki-makerepo: Bail if both srcdir and repository are not specified.
+ Closes: #493628
-- Joey Hess <joeyh@debian.org> Mon, 21 Jul 2008 11:35:46 -0400
diff --git a/ikiwiki-makerepo b/ikiwiki-makerepo
index d249e5e75..b733bd13a 100755
--- a/ikiwiki-makerepo
+++ b/ikiwiki-makerepo
@@ -4,7 +4,7 @@ set -e
rcs="$1"
srcdir="$2"
repository="$3"
-
+
usage () {
echo "usage: ikiwiki-makerepo svn|git srcdir repository" >&2
echo " ikiwiki-makerepo bzr|mercurial srcdir" >&2
@@ -21,6 +21,10 @@ if [ ! -d "$srcdir" ]; then
fi
if [ "$rcs" != mercurial ] && [ "$rcs" != bzr ]; then
+ if [ -z "$repository" ]; then
+ echo "you need to specify both a srcdir and a repository for $rcs" >&2
+ usage
+ fi
if [ -e "$repository" ]; then
echo "repository $repository already exists, aborting" >&2
exit 1