Skip to content

Commit 695e90d

Browse files
authored
Merge pull request #50 from orcinustools/0.4.3
Bump version to 0.4.4
2 parents d52afe4 + 9432b98 commit 695e90d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

lib/logs.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ module.exports = {
7171
ps: (base, token)=>{
7272
var child = chp.spawn(base,token);
7373
child.stdout.on('data', (data) => {
74-
process.stdout.write(`${data}`);
74+
process.stdout.write(`stdout : ${data}`);
75+
});
76+
child.stderr.on('data', (data) => {
77+
process.stderr.write(`stderr : ${data}`);
7578
});
7679
}
7780
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orcinus",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "Container orchestration tools",
55
"main": "cli.js",
66
"scripts": {

0 commit comments

Comments
 (0)