mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Merge pull request #8578 from erikh/fix_slash
builder: Handle trailing \ appropriately.
This commit is contained in:
		
						commit
						9a82713772
					
				
					 3 changed files with 3 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -32,7 +32,7 @@ type Node struct {
 | 
			
		|||
var (
 | 
			
		||||
	dispatch                map[string]func(string) (*Node, map[string]bool, error)
 | 
			
		||||
	TOKEN_WHITESPACE        = regexp.MustCompile(`[\t\v\f\r ]+`)
 | 
			
		||||
	TOKEN_LINE_CONTINUATION = regexp.MustCompile(`\\$`)
 | 
			
		||||
	TOKEN_LINE_CONTINUATION = regexp.MustCompile(`\\\s*$`)
 | 
			
		||||
	TOKEN_COMMENT           = regexp.MustCompile(`^#.*$`)
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -14,6 +14,7 @@ RUN echo hello \
 | 
			
		|||
goodbye\
 | 
			
		||||
frog
 | 
			
		||||
RUN echo hello  \  
 | 
			
		||||
world
 | 
			
		||||
RUN echo hi \
 | 
			
		||||
 \
 | 
			
		||||
 world \
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,7 +3,7 @@
 | 
			
		|||
(run "echo hello    world")
 | 
			
		||||
(run "echo hello  world")
 | 
			
		||||
(run "echo hello goodbyefrog")
 | 
			
		||||
(run "echo hello  \\")
 | 
			
		||||
(run "echo hello  world")
 | 
			
		||||
(run "echo hi   world  goodnight")
 | 
			
		||||
(run "echo goodbyefrog")
 | 
			
		||||
(run "echo goodbyefrog")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue