1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-07 05:42:25 +01:00

Merge pull request #2515 from tranzystorek-io/custom-asset-gen-dir

Allow customizing output directory for generated assets
This commit is contained in:
David Peter
2023-03-25 13:18:02 +01:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -6,6 +6,8 @@
## Other
- Output directory for generated assets (completion, manual) can be customized, see #2515 (@tranzystorek-io)
## Syntaxes
## Themes

View File

@@ -43,7 +43,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
variables.insert("PROJECT_EXECUTABLE_UPPERCASE", &executable_name_uppercase);
variables.insert("PROJECT_VERSION", PROJECT_VERSION);
let out_dir_env = std::env::var_os("OUT_DIR").expect("OUT_DIR to be set in build.rs");
let out_dir_env = std::env::var_os("BAT_ASSETS_GEN_DIR")
.or_else(|| std::env::var_os("OUT_DIR"))
.expect("BAT_ASSETS_GEN_DIR or OUT_DIR to be set in build.rs");
let out_dir = Path::new(&out_dir_env);
fs::create_dir_all(out_dir.join("assets/manual")).unwrap();