fix: rephrase error message + bump to 1.2.10
This commit is contained in:
parent
c54fa7d266
commit
1c3e07afd3
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@strudel/osc",
|
"name": "@strudel/osc",
|
||||||
"version": "1.2.9",
|
"version": "1.2.10",
|
||||||
"description": "OSC messaging for strudel",
|
"description": "OSC messaging for strudel",
|
||||||
"main": "osc.mjs",
|
"main": "osc.mjs",
|
||||||
"bin": "./server.js",
|
"bin": "./server.js",
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ if (debug) {
|
||||||
osc.on('error', (message) => {
|
osc.on('error', (message) => {
|
||||||
if (message.toString().includes('EADDRINUSE')) {
|
if (message.toString().includes('EADDRINUSE')) {
|
||||||
console.log(`------ ERROR -------
|
console.log(`------ ERROR -------
|
||||||
osc server already running! to stop it:
|
a server is already running on port 57121! to stop it:
|
||||||
1. run "lsof -ti :57121 | xargs kill -9" (macos / linux)
|
1. run "lsof -ti :57121 | xargs kill -9" (macos / linux)
|
||||||
2. re-run the osc server
|
2. re-run the osc server
|
||||||
`);
|
`);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue