Skip to content

Commit

Permalink
chore: output
Browse files Browse the repository at this point in the history
  • Loading branch information
technote-space committed Aug 31, 2019
1 parent 8dbf1b9 commit a49790a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/command.ts
Expand Up @@ -40,7 +40,7 @@ const getCurrentBranchName = async (workDir: string): Promise<string> => {
const runDocToc = async (workDir: string): Promise<boolean> => {
const args = getDocTocArgs();
const doctoc = path.resolve(workDir, 'node_modules/.bin/doctoc');
await execAsync(`yarn --cwd ${workDir} add doctoc`);
await execAsync(`yarn --cwd ${workDir} add doctoc`, false, null, false, true);
await execAsync(`${doctoc} ${args} --github`);
return true;
};
Expand Down

0 comments on commit a49790a

Please sign in to comment.