Skip to content

Commit

Permalink
Redirect to out instead of docs in website
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Dec 5, 2018
1 parent b290b9f commit 6d013f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ bloop-config/
out/
.DS_Store
website/build/
website/build/bloop-gh-pages/
node_modules/
package-lock.json
4 changes: 2 additions & 2 deletions website/siteConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ function loadMD(fsPath) {
const tools = loadYaml("./tools.yml");
const buildTools = loadYaml("./build-tools.yml");

const toolsMD = findMarkDownSync("../docs/tools/");
const toolsMD = findMarkDownSync("../out/tools/");
toolsMD.forEach(tool => {
tool.install = loadMD(`${tool.path}/install.md`);
tool.usage = loadMD(`${tool.path}/usage.md`);
});

const buildToolsMD = findMarkDownSync("../docs/build-tools/");
const buildToolsMD = findMarkDownSync("../out/build-tools/");
buildToolsMD.forEach(buildTool => {
buildTool.export = loadMD(`${buildTool.path}/export.md`);
});
Expand Down

0 comments on commit 6d013f4

Please sign in to comment.