Skip to content

Commit

Permalink
fix(publish): delete redundant logs
Browse files Browse the repository at this point in the history
  • Loading branch information
neikvon committed Jul 16, 2018
1 parent ce9ee0a commit c6fd92f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ async function entry (options = defaults) {

// publish
await publish()
ctx.logger.success('Publish successfully\n')

// status
await getStatus()
Expand Down
3 changes: 2 additions & 1 deletion lib/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ async function publish () {
}
}

return execa.shell(cmd, {
await execa.shell(cmd, {
cwd: root
})
ctx.logger.success('Publish successfully\n')
}
}
}
Expand Down

0 comments on commit c6fd92f

Please sign in to comment.