summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Kaseorg <andersk@mit.edu>2010-04-21 23:23:07 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2010-04-21 23:23:07 +0200
commit8b1d84c04a11d6a1a27898af77340ec5ab234217 (patch)
treedc247c21784440f2a47c71263f91fcec2bbf5bda
parent7cf5c066fa28d9de911c025537bfed77110e8e47 (diff)
downloadbzr-fastimport-8b1d84c04a11d6a1a27898af77340ec5ab234217.tar.gz
git-darcs: Fix exit/return confusion.
Shell functions should return instead of exiting the whole script; they should return a nonzero status on error and a zero status on success. Notably, “Nothing fetched” is not an error, and pull should go ahead and do a merge or rebase even if fetch didn’t fetch anything.
-rwxr-xr-xexporters/darcs/git-darcs50
1 files changed, 25 insertions, 25 deletions
diff --git a/exporters/darcs/git-darcs b/exporters/darcs/git-darcs
index 03c2ec1..18455a2 100755
--- a/exporters/darcs/git-darcs
+++ b/exporters/darcs/git-darcs
@@ -32,20 +32,20 @@ add()
shift
if ! [ -n "$name" -a -n "$location" ]; then
echo "Usage: git darcs add name location [darcs-fast-export options]"
- exit
+ return 1
fi
if git remote show |grep -q $name; then
echo "There is already a remote with that name"
- exit
+ return 1
fi
if [ -n "$(git config git-darcs.$name.location)" ]; then
echo "There is already a darcs repo with that name"
- exit
+ return 1
fi
repo=$location/_darcs
if [ ! -d $repo ] && ! wget --quiet --spider $repo; then
echo "Remote is not a darcs repository"
- exit
+ return 1
fi
git config git-darcs.$name.location $location
echo "Darcs repo $name added. You can fetch it with 'git darcs fetch $name'"
@@ -60,7 +60,7 @@ get_location()
l=$(git config git-darcs.$remote.location)
if [ -z "$l" ]; then
echo "Cannot find darcs remote with name '$remote'." >&2
- exit
+ return 1
fi
echo $l
}
@@ -71,9 +71,9 @@ fetch()
shift
if ! [ -n "$remote" -a -z "$*" ]; then
echo "Usage: git darcs fetch reponame"
- exit
+ return 1
fi
- location=$(get_location $remote)
+ location=$(get_location $remote) || return $?
git_map=$git_dir/darcs-git/$remote-git-map
darcs_map=$git_dir/darcs-git/$remote-darcs-map
common_opts="--working $git_dir/darcs-git/repo --logfile $git_dir/darcs-git/fetch.log --git-branch=refs/remotes/darcs/$remote"
@@ -99,11 +99,11 @@ fetch()
git shortlog $old_rev..$new_rev
else
echo "Nothing fetched."
- exit
+ return 0
fi
else
echo "One of the mapfiles is missing! Something went wrong!"
- exit
+ return 1
fi
post_fetch="$(git config git-darcs.$remote.post-fetch)"
if [ -n "$post_fetch" ]; then
@@ -117,9 +117,9 @@ pull()
shift
if ! [ -n "$remote" -a -z "$*" ]; then
echo "Usage: git darcs pull reponame"
- exit
+ return 1
fi
- fetch $remote
+ fetch $remote || return $?
# see if we need to merge or rebase
branch=$(git symbolic-ref HEAD|sed 's|.*/||')
if [ "$(git config branch.$branch.rebase)" = "true" ]; then
@@ -135,22 +135,22 @@ push()
shift
if ! [ -n "$remote" -a -z "$*" ]; then
echo "Usage: git darcs push reponame"
- exit
+ return 1
fi
- location=$(get_location $remote)
+ location=$(get_location $remote) || return $?
if [ -n "$(git rev-list --left-right HEAD...refs/remotes/darcs/$remote | sed -n '/^>/ p')" ]; then
echo "HEAD is not a strict child of $remote, cannot push. Merge first"
- exit
+ return 1
fi
if [ -z "$(git rev-list --left-right HEAD...refs/remotes/darcs/$remote | sed -n '/^</ p')" ]; then
echo "Nothing to push. Commit something first"
- exit
+ return 1
fi
git_map=$git_dir/darcs-git/$remote-git-map
darcs_map=$git_dir/darcs-git/$remote-darcs-map
if [ ! -f $git_map -o ! -f $darcs_map ]; then
echo "We do not have refmapping yet. Then how can I push?"
- exit
+ return 1
fi
pre_push="$(git config git-darcs.$remote.pre-push)"
if [ -n "$pre_push" ]; then
@@ -176,18 +176,18 @@ list()
if [ -z "$*" ]
then
git config -l | sed -n -e '/git-darcs\..*/ {s/git-darcs\.//; s/\.location=.*//p}'
- exit
+ return 0
elif [ "$#" -eq 1 ]
then
case $1 in
-v|--verbose)
git config -l | sed -n -e '/git-darcs\..*/ {s/git-darcs\.//; s/\.location=/\t/p}'
- exit
+ return 0
;;
esac
fi
echo "Usage: git darcs list [-v|--verbose]"
- exit 1
+ return 1
}
# Find the darcs commit(s) supporting a git SHA1 prefix
@@ -198,7 +198,7 @@ find_darcs()
if [ -z "$sha1" -o -n "$*" ]
then
echo "Usage: git darcs find-darcs <sha1-prefix>"
- exit 1
+ return 1
fi
for remote in $(git for-each-ref --format='%(refname)' refs/remotes/darcs)
do
@@ -208,7 +208,7 @@ find_darcs()
if [ ! -f $git_map -o ! -f $darcs_map ]
then
echo "Missing mappings for remote $remote"
- exit 1
+ return 1
fi
for row in `sed -n -e "/:.* $sha1.*/ s/[^ ]*/&/p" $git_map`
do
@@ -225,7 +225,7 @@ find_git()
if [ -z "$patch" -o -n "$*" ]
then
echo "Usage: git darcs find-git <patch-prefix>"
- exit 1
+ return 1
fi
for remote in $(git for-each-ref --format='%(refname)' refs/remotes/darcs)
do
@@ -235,7 +235,7 @@ find_git()
if [ ! -f $git_map -o ! -f $darcs_map ]
then
echo "Missing mappings for remote $remote"
- exit 1
+ return 1
fi
for row in `sed -n -e "/:.* $patch.*/ s/[^ ]*/&/p" $darcs_map`
do
@@ -247,7 +247,7 @@ find_git()
git rev-parse 2> /dev/null
if [ $? != 0 ]; then
echo "Must be inside a git repository to work"
- exit
+ exit 1
fi
git_dir=$(git rev-parse --git-dir)
@@ -270,7 +270,7 @@ case $command in
*)
echo "Usage: git darcs [COMMAND] [OPTIONS]"
echo "Commands: add, push, fetch, pull, list, find-darcs, find-git"
- exit
+ exit 1
;;
esac