about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLukas Wirth <lukas.wirth@ferrous-systems.com>2023-09-20 08:31:33 +0200
committerLukas Wirth <lukastw97@gmail.com>2023-09-20 08:31:33 +0200
commit670631dd2606e7cb7cc488a2f7a7331e9dfd39af (patch)
tree0664f296c6480289887c2f2feebea704150e9d9e /src
parent4b91288484569dd59c9a996ae45e08ae9527abc1 (diff)
downloadrust-670631dd2606e7cb7cc488a2f7a7331e9dfd39af.tar.gz
rust-670631dd2606e7cb7cc488a2f7a7331e9dfd39af.zip
Ensure `build/tmp` exists in `rustdoc_themes::get_themes`
Diffstat (limited to 'src')
-rw-r--r--src/tools/rustdoc-themes/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/rustdoc-themes/main.rs b/src/tools/rustdoc-themes/main.rs
index cc13df1f5ba..1eba83a8057 100644
--- a/src/tools/rustdoc-themes/main.rs
+++ b/src/tools/rustdoc-themes/main.rs
@@ -1,5 +1,5 @@
 use std::env::args;
-use std::fs::File;
+use std::fs::{create_dir_all, File};
 use std::io::{BufRead, BufReader, BufWriter, Write};
 use std::path::Path;
 use std::process::{exit, Command};
@@ -14,6 +14,7 @@ fn get_themes<P: AsRef<Path>>(style_path: P) -> Vec<String> {
         std::time::SystemTime::UNIX_EPOCH.elapsed().expect("time is after UNIX epoch").as_millis();
 
     let mut in_theme = None;
+    create_dir_all("build/tmp").expect("failed to create temporary test directory");
     for line in BufReader::new(File::open(style_path).expect("read rustdoc.css failed")).lines() {
         let line = line.expect("read line from rustdoc.css failed");
         let line = line.trim();