Skip to content

Commit

Permalink
Bump version to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
anak10thn committed Aug 28, 2020
1 parent ad160d7 commit 9432b98
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 9432b98

Please sign in to comment.