Skip to content

Commit

Permalink
Merge pull request #50 from orcinustools/0.4.3
Browse files Browse the repository at this point in the history
Bump version to 0.4.4
  • Loading branch information
anak10thn authored Aug 28, 2020
2 parents d52afe4 + 9432b98 commit 695e90d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/logs.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ module.exports = {
ps: (base, token)=>{
var child = chp.spawn(base,token);
child.stdout.on('data', (data) => {
process.stdout.write(`${data}`);
process.stdout.write(`stdout : ${data}`);
});
child.stderr.on('data', (data) => {
process.stderr.write(`stderr : ${data}`);
});
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orcinus",
"version": "0.4.3",
"version": "0.4.4",
"description": "Container orchestration tools",
"main": "cli.js",
"scripts": {
Expand Down

0 comments on commit 695e90d

Please sign in to comment.