diff options
author | Johannes Sixt <j6t@kdbg.org> | 2018-10-25 22:47:45 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-26 10:20:23 +0900 |
commit | 3a4a4cab3ef024e10af7a5bbcaed4b961c60f1db (patch) | |
tree | 845fa7bba14ed40fbc833f3f7a999a684ffd1557 /t/lib-rebase.sh | |
parent | rebase -i: introduce the 'break' command (diff) | |
download | tgif-3a4a4cab3ef024e10af7a5bbcaed4b961c60f1db.tar.xz |
rebase -i: recognize short commands without arguments
The sequencer instruction 'b', short for 'break', is rejected:
error: invalid line 2: b
The reason is that the parser expects all short commands to have
an argument. Permit short commands without arguments.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-rebase.sh')
-rw-r--r-- | t/lib-rebase.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-rebase.sh b/t/lib-rebase.sh index 584604ee63..86572438ec 100644 --- a/t/lib-rebase.sh +++ b/t/lib-rebase.sh @@ -49,7 +49,7 @@ set_fake_editor () { case $line in squash|fixup|edit|reword|drop) action="$line";; - exec*|break) + exec*|break|b) echo "$line" | sed 's/_/ /g' >> "$1";; "#") echo '# comment' >> "$1";; |