зеркало из https://github.com/microsoft/git.git
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 by87ab7992
, one was fixed with0d38ab25
but this was somehow left behind. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
befc9c4204
Коммит
1fa9bf362a
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче