aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-06-03 17:22:05 +0100
committerAleksey Kladov <[email protected]>2020-06-03 17:26:50 +0100
commit5315934d888797432d62ec4a55303aeacb8cd286 (patch)
tree9cd37b2ad18029c098529d91ef89443ac8e13b22 /xtask/src/lib.rs
parent636f597a86cbb72194dd9c867563a77ddcf50c44 (diff)
Don't store generated docs in the repo
Diffstat (limited to 'xtask/src/lib.rs')
-rw-r--r--xtask/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/xtask/src/lib.rs b/xtask/src/lib.rs
index 874957885..739f49f7b 100644
--- a/xtask/src/lib.rs
+++ b/xtask/src/lib.rs
@@ -160,6 +160,8 @@ pub fn run_release(dry_run: bool) -> Result<()> {
160 run!("git reset --hard tags/nightly")?; 160 run!("git reset --hard tags/nightly")?;
161 run!("git push")?; 161 run!("git push")?;
162 } 162 }
163 codegen::generate_assists_docs(Mode::Overwrite)?;
164 codegen::generate_feature_docs(Mode::Overwrite)?;
163 165
164 let website_root = project_root().join("../rust-analyzer.github.io"); 166 let website_root = project_root().join("../rust-analyzer.github.io");
165 let changelog_dir = website_root.join("./thisweek/_posts"); 167 let changelog_dir = website_root.join("./thisweek/_posts");