Skip to content

Commit

Permalink
fix(generate_docs): don't symlink included projects. clone directly t…
Browse files Browse the repository at this point in the history
…o temp dir
  • Loading branch information
christopherthielen committed May 3, 2018
1 parent fd9f08a commit 506dbbf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions generate_docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ includes.forEach(include => {
flags.branch = version ? version : flags.branch;
}

publishYalcPackage(path.join(DOWNSTREAM_CACHE, package), repo, flags);
shelljs.ln('-s', path.join(DOWNSTREAM_CACHE, package), path.join(DOCGEN_DIR, kebob(package)));
publishYalcPackage(path.join(DOCGEN_DIR, kebob(package)), repo, flags);
});

// symlink node_modules, package.json, typedoc.json into temp dir
Expand Down

0 comments on commit 506dbbf

Please sign in to comment.