Fix docker man page links

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2020-03-19 14:02:15 -04:00
parent 1cb3e3a705
commit aaf50f0f66

View File

@ -1,5 +1,6 @@
#!/bin/sh
for i in $@; do
filename=$(echo $i | sed 's/podman/docker/g')
echo .so man1/$i > $filename
b=$(basename $i)
filename=$(echo $i | sed 's/podman/docker/g')
echo .so man1/$b > $filename
done