Skip to content

Commit 4d0928c

Browse files
fix(generate_docs): use git checkout (not git co)
1 parent b56d048 commit 4d0928c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate_docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fs.readdirSync(path.join(PACKAGE_DIR, 'node_modules')).forEach(module => {
7272
// re-hydrate current package using .git dir
7373
shelljs.cp('-r', path.join(PACKAGE_DIR, '.git'), DOCGEN_PACKAGE_DIR);
7474
process.chdir(DOCGEN_PACKAGE_DIR);
75-
shelljs.exec("git co .");
75+
shelljs.exec("git checkout .");
7676

7777
// create command line
7878
const typedocOptions = TYPEDOC_CONFIG.typedoc.generateOptions || {};

0 commit comments

Comments
 (0)