theturtle32 / WebSocket-Node

A WebSocket Implementation for Node.JS (Draft -08 through the final RFC 6455)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ERR! Command failed (Команда не выполнена): git checkout 4.0

VNS65 opened this issue · comments

commented

Ошибка npm ERR! Command failed: git checkout 4.0 при установке websocket.

npm ERR! code 1
npm ERR! Command failed: git checkout 4.0
npm ERR! error: pathspec '4.0' did not match any file(s) known to git
npm ERR!

Решение:

Заменить в path/to/node_modules/websocket/package.json линия 57:
"gulp": "git+https://github.com/gulpjs/gulp.git#4.0" на "gulp": "^4.0"

В корне path/to/node_modules/websocket запустить команду npm i.

Бонусом можно включить параллельное построение node-gyp, параметр /m .

"scripts": {
  "gulp": "gulp",
  "install": "(node-gyp rebuild /m 2> builderror.log) || (exit 0)",
  "test": "faucet test/unit"
}

Please, write in English.

BTW the issue has been fixed in 3cb29e1.

@theturtle32 can you make a new release pleasE?