chainlint.sed inserts a ">" annotation at the beginning of a line to signal that its heuristics have identified an end-of-subshell. This was useful as a debugging aid during development of the script, but it has no value to test writers and might even confuse them into thinking that the linter is misbehaving by inserting line-noise into the shell code it is validating. Moreover, its presence also potentially makes it difficult to reuse the chainlint self-test "expect" output should a more capable linter ever be developed. Therefore, drop the ">" annotation. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			202 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			202 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
(
 | 
						|
	for i in a b c
 | 
						|
	do
 | 
						|
		foo || exit 1
 | 
						|
		bar &&
 | 
						|
		baz
 | 
						|
	done
 | 
						|
) &&
 | 
						|
(
 | 
						|
	while true
 | 
						|
	do
 | 
						|
		foo || exit 1
 | 
						|
		bar &&
 | 
						|
		baz
 | 
						|
	done
 | 
						|
) &&
 | 
						|
(
 | 
						|
	i=0 &&
 | 
						|
	while test $i -lt 10
 | 
						|
	do
 | 
						|
		echo $i || exit
 | 
						|
		i=$(($i + 1))
 | 
						|
	done
 | 
						|
)
 |