diff --git a/lib/server/main.js b/lib/server/main.js index 22ac684a..26d766e1 100644 --- a/lib/server/main.js +++ b/lib/server/main.js @@ -107,7 +107,9 @@ exports.pipe = pipe = srvrequire('pipe'), exports.socket = srvrequire('socket'), exports.console = srvrequire('console'), - exports.terminal = srvrequire('terminal'), + exports.terminal = !ISWIN32 ? srvrequire('terminal') : { + init: function() {} + }, exports.express = srvrequire('express'), exports.auth = srvrequire('auth').auth, exports.appcache = srvrequire('appcache'),