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
{{ message }}
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.
Currently ogar is spawning a asyncconsole. When I try to start it with no TTY attached
/usr/bin/node src/index.js </dev/null
the following error appears:
TypeError: this.stdin.setRawMode is not a function
at new AsyncConsole (/home/ogar/Ogar/node_modules/asyncconsole/index.js:24:12)
at Timeout._onTimeout (/home/ogar/Ogar/src/index.js:50:17)
at ontimeout (timers.js:365:14)
at tryOnTimeout (timers.js:237:5)
at Timer.listOnTimeout (timers.js:207:5)
Currently ogar is spawning a asyncconsole. When I try to start it with no TTY attached
/usr/bin/node src/index.js </dev/null
the following error appears:
TypeError: this.stdin.setRawMode is not a function
at new AsyncConsole (/home/ogar/Ogar/node_modules/asyncconsole/index.js:24:12)
at Timeout._onTimeout (/home/ogar/Ogar/src/index.js:50:17)
at ontimeout (timers.js:365:14)
at tryOnTimeout (timers.js:237:5)
at Timer.listOnTimeout (timers.js:207:5)
This is because setRawMode is only available for TTYs (see nodejs/node-v0.x-archive#8204)
Please allow to start ogar non-interactive, i.e. without an asyncconsole.
The text was updated successfully, but these errors were encountered: