diff options
Diffstat (limited to 'docs/podman-remote.sh')
-rwxr-xr-x | docs/podman-remote.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/podman-remote.sh b/docs/podman-remote.sh index 2f8e76d1b..d8ce4a359 100755 --- a/docs/podman-remote.sh +++ b/docs/podman-remote.sh @@ -53,9 +53,8 @@ function darwin_fn() { local markdown=$1 local file=$(basename $markdown) local dir=$(dirname $markdown) - - if [[ -f $dir/links/$file ]]; then - markdown=$dir/links/$file + if [[ -f $dir/../../links/$file ]]; then + markdown=$dir/../../links/$file fi install $markdown $TARGET } |