Closed simonkern closed 1 year ago
As mentioned in #43, when I try to bring tailscale up via Tailscale.sh, I get the following error:
Tailscale.sh
./Tailscale.sh: line 18: [: -d: binary operator expected
Changing if [ test -d /proc/${PID}/ ]; then to if [ -d /proc/${PID}/ ]; then in Tailscale.sh resolves that error. I'll open a PR for the change.
if [ test -d /proc/${PID}/ ]; then
if [ -d /proc/${PID}/ ]; then
As mentioned in #43, when I try to bring tailscale up via
Tailscale.sh
, I get the following error:Changing
if [ test -d /proc/${PID}/ ]; then
toif [ -d /proc/${PID}/ ]; then
inTailscale.sh
resolves that error. I'll open a PR for the change.