Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
Fix publish tool
Browse files Browse the repository at this point in the history
  • Loading branch information
hsiliev committed Feb 10, 2018
1 parent c88d520 commit a950cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/publish/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const execCommand = (command, workDir) => new Promise((resolve, reject) => {
});

const publishModule = async(version, workDir) =>
await execCommand(`yarn publishe --new-version ${version}`, workDir);
await execCommand(`yarn publish --new-version ${version}`, workDir);

const runCLI = () => {
commander.parse(process.argv);
Expand Down

0 comments on commit a950cff

Please sign in to comment.