tailscale / tailscale-qpkg

Package Tailscale client in QPKG
MIT License
459 stars 38 forks source link

Error in Tailscale.sh #65

Closed simonkern closed 1 year ago

simonkern commented 1 year ago

As mentioned in #43, when I try to bring tailscale up via Tailscale.sh, I get the following error:

./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.