Suppress errors if realpath fails or is missing
parent
390260c6a6
commit
2cd16b4578
|
@ -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…
Reference in New Issue