You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to Issue #14 (Windows). On Linux, killProcessOnPort runs lsof -ti:9009 | xargs kill -9. When port is free, xargs runs kill with no PID and it fails. Fix: use xargs -r kill -9 so kill is not run when stdin is empty.