summaryrefslogtreecommitdiff
path: root/git-quiltimport.sh
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2007-04-13 21:34:18 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-04-14 10:39:36 (GMT)
commit1fa9bf362acbe2c939c246684ab0fe59aec74ba8 (patch)
tree2217eae28d5525513104cfcab1bdb10eca758749 /git-quiltimport.sh
parentbefc9c42043d67c2ccf5a8a0b660aac8e84bbeee (diff)
downloadgit-1fa9bf362acbe2c939c246684ab0fe59aec74ba8.zip
git-1fa9bf362acbe2c939c246684ab0fe59aec74ba8.tar.gz
git-1fa9bf362acbe2c939c246684ab0fe59aec74ba8.tar.bz2
git-quiltimport complaining yet still working
There were two bugs: "stop_here" doesn't exist, but the bug that causes this code to trigger in the *first* place is the wrong use of "$dotest". It should be ".dotest" This is essentially the same bug introduced by 87ab7992, one was fixed with 0d38ab25 but this was somehow left behind. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-quiltimport.sh')
-rwxr-xr-xgit-quiltimport.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-quiltimport.sh b/git-quiltimport.sh
index edccd82..018cc75 100755
--- a/git-quiltimport.sh
+++ b/git-quiltimport.sh
@@ -73,9 +73,9 @@ mkdir $tmp_dir || exit 2
for patch_name in $(cat "$QUILT_PATCHES/series" | grep -v '^#'); do
echo $patch_name
(cat $QUILT_PATCHES/$patch_name | git-mailinfo "$tmp_msg" "$tmp_patch" > "$tmp_info") || exit 3
- test -s $dotest/patch || {
+ test -s .dotest/patch || {
echo "Patch is empty. Was is split wrong?"
- stop_here $this
+ exit 1
}
# Parse the author information