Suppress errors if realpath fails or is missing

main
Jordi Boggiano 2 years ago
parent 390260c6a6
commit 2cd16b4578
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -392,7 +392,7 @@ PROXY;
return <<<PROXY
#!/usr/bin/env sh
self=\$(realpath \$0)
self=\$(realpath \$0 >/dev/null 2>&1)
if [ -z "\$self" ]
then
self="\$0"

Loading…
Cancel
Save