We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416e37f commit bbfb952Copy full SHA for bbfb952
README.md
@@ -56,6 +56,7 @@ docker is installed and the service is running.
56
```sh
57
git clone https://github.com/rust-lang/docs.rs.git docs.rs
58
cd docs.rs
59
+git submodule update --init
60
# Configure the default settings for external services
61
cp .env.sample .env
62
# Create the DOCSRS_PREFIX directory
build.rs
@@ -79,7 +79,12 @@ fn main() -> Result<()> {
79
write_git_version(out_dir)?;
80
compile_sass(out_dir)?;
81
write_known_targets(out_dir)?;
82
- compile_syntax(out_dir)?;
+ compile_syntax(out_dir).context(
83
+ "\
84
+ could not compile syntax files\n\n\
85
+ Note: you may need to run `git submodule update --init`\
86
+ ",
87
+ )?;
88
Ok(())
89
}
90
0 commit comments