Skip to content

Commit

Permalink
Remove the output message of action execution.
Browse files Browse the repository at this point in the history
  • Loading branch information
domchen committed Nov 21, 2021
1 parent 5850681 commit 112f98f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "depsync",
"version": "1.2.2",
"version": "1.2.3",
"author": "Dom Chen",
"homepage": "http://www.idom.me/",
"description": "Automatically synchronize the dependencies of a project by the DEPS configuration file.",
Expand Down
1 change: 0 additions & 1 deletion src/tasks/ActionTask.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ function ActionTask(item) {

ActionTask.prototype.run = function (callback) {
let item = this.item;
Utils.log("【depsync】executing action: " + item.command);
Utils.exec(item.command, item.dir);
callback && callback();
};
Expand Down

0 comments on commit 112f98f

Please sign in to comment.