Skip to content

Commit

Permalink
fix: daemon std in
Browse files Browse the repository at this point in the history
  • Loading branch information
BIYUEHU committed Aug 11, 2024
1 parent a73390c commit ce41637
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kotori-bot/root",
"description": "ChatBot Framework",
"version": "1.6.3",
"version": "1.6.4",
"private": true,
"license": "GPL-3.0",
"author": "Arimura Sena <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/kotori/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kotori-bot",
"version": "1.6.3",
"version": "1.6.4",
"description": "Cross-platform chatbot framework base on Node.js and TypeScript",
"main": "lib/index.js",
"license": "GPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/kotori/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ program
if (error) process.stderr.write(error.message)
}
)
process.stdin.on('data', (...args) => child.stdin?.emit('data', ...args))
process.stdin.on('data', (data) => child.stdin?.write(data))
return
}

Expand Down

0 comments on commit ce41637

Please sign in to comment.