moby/builder
Doug Davis 006c066b6c Fix RUN err msg (again)
Previous fix used %q which incorrectly go-escaped things. For example:

```
RUN echoo A \& B	C
```
would result in the user seeing:
```
INFO[0000] The command '/bin/sh -c echoo A \\& B\tC' returned a non-zero code: 127
```
Note the double-\ and the \t instead of a tab character

The testcase had to double escape things due to logrus getting in the way
but I'm going to fix that in another PR because its a change to the UX.

Signed-off-by: Doug Davis <dug@us.ibm.com>
2015-05-09 09:22:30 -07:00
..
command Remove unused Dockerfile instruction INSERT 2015-05-06 16:26:43 -07:00
parser Remove unused Dockerfile instruction INSERT 2015-05-06 16:26:43 -07:00
bflag.go Add support for Dockerfile CMD options 2015-04-28 05:28:46 -07:00
bflag_test.go Add support for Dockerfile CMD options 2015-04-28 05:28:46 -07:00
dispatchers.go Remove unused Dockerfile instruction INSERT 2015-05-06 16:26:43 -07:00
evaluator.go add cpu.cfs_period_us support 2015-05-09 10:02:46 +08:00
internals.go Fix RUN err msg (again) 2015-05-09 09:22:30 -07:00
job.go add cpu.cfs_period_us support 2015-05-09 10:02:46 +08:00
shell_parser.go Add support for more advanced ${xxx:...} syntax 2015-04-01 08:11:15 -07:00
shell_parser_test.go Fix some escaping around env var processing 2015-03-20 20:09:00 -07:00
support.go Fix some escaping around env var processing 2015-03-20 20:09:00 -07:00
words Add support for more advanced ${xxx:...} syntax 2015-04-01 08:11:15 -07:00