mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3e1b539e8d
This fix tries to fix the bug reported by #24693 where an empty line after escape will not be stopped by the parser. This fix addresses this issue by stop the parser from continue with an empty line after escape. An additional integration test has been added. This fix fixes #24693. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
31 lines
363 B
Docker
31 lines
363 B
Docker
FROM ubuntu:14.04
|
|
|
|
RUN echo hello\
|
|
world\
|
|
goodnight \
|
|
moon\
|
|
light\
|
|
ning
|
|
RUN echo hello \
|
|
world
|
|
RUN echo hello \
|
|
world
|
|
RUN echo hello \
|
|
goodbye\
|
|
frog
|
|
RUN echo hi \
|
|
\
|
|
world \
|
|
\
|
|
good\
|
|
\
|
|
night
|
|
RUN echo goodbye\
|
|
frog
|
|
RUN echo good\
|
|
bye\
|
|
frog
|
|
|
|
RUN echo hello \
|
|
# this is a comment that breaks escape continuation
|
|
RUN echo this is some more useful stuff
|