Re: [PATCH 1/2] am: handle stray $dotest directory
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:57:45
Junio C Hamano [off-list ref] writes:
quoted
+ # Possible stray $dotest directory + if test -d "$dotest"; then + case "$skip,$resolved,$abort" in + ,,t) + rm -fr "$dotest" + exit 0 + ;; + *) + die "$(eval_gettext "Stray $dotest directory found. +Use \"git am --abort\" to remove it.")" + ;; + esacThese two case arms are indented one level too deep (will locally touch up).
And then the message triggers at the second test in t3420 when applied on top of 587947750bd7 (rebase: implement --[no-]autostash and rebase.autostash, 2013-05-12) or 45acb7592825 (Merge branch 'rr/rebase-autostash', 2013-06-11).