mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f93fee5f48
Tweaking for Hugo Updating the Dockerfile with new sed; fix broken link on Kitematic Fixing image pull for Dockerfile Removing docs targets Signed-off-by: Mary Anthony <mary@docker.com>
10 lines
297 B
Bash
Executable file
10 lines
297 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "#!/bin/sh"
|
|
cat ../https.md | awk '{if (sub(/\\$/,"")) printf "%s", $0; else print $0}' \
|
|
| grep ' $ ' \
|
|
| sed 's/ $ //g' \
|
|
| sed 's/2375/7777/g' \
|
|
| sed 's/2376/7778/g' \
|
|
| sed 's/^docker/# docker/g' \
|
|
| sed 's/^curl/# curl/g'
|