mirror of
https://github.com/containers/podman.git
synced 2025-05-21 00:56:36 +08:00

containers-common now ships a containerfile man page, this patch adds a link to dockerfile.5 so that if user installs podman-docker package man dockerfile will work. [NO TESTS NEEDED] since this is just a man page change. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
8 lines
194 B
Bash
Executable File
8 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
for i in $@; do
|
|
b=$(basename $i)
|
|
filename=$(echo $i | sed 's/podman/docker/g')
|
|
echo .so man1/$b > $filename
|
|
done
|
|
echo .so man5/containerfile.5 > $(dirname $1)/dockerfile.5
|