- Commit
- 5df90d7b8eef89b93659db291b883063ec46e9df
- Parent
- 18ae8e74e90aef70f33e5afa2f8193297a38828c
- Author
- Pablo <pablo-pie@riseup.net>
- Date
Fixed a bug in build.rs
Yet another static site generator for Git 🙀️
Fixed a bug in build.rs
1 files changed, 3 insertions, 3 deletions
Status | Name | Changes | Insertions | Deletions |
Modified | build.rs | 2 files changed | 3 | 3 |
diff --git a/build.rs b/build.rs @@ -4,9 +4,9 @@ static_toml::static_toml! { static CONFIG = include_toml!("config.toml"); } -const STORE_PATH: &str = CONFIG.git.release.store_path; -const PRIVATE_STORE_PATH: &str = CONFIG.git.release.private_store_path; -const OUTPUT_PATH: &str = CONFIG.output.release.path; +const STORE_PATH: &str = CONFIG.git.store_path; +const PRIVATE_STORE_PATH: &str = CONFIG.git.private_store_path; +const OUTPUT_PATH: &str = CONFIG.output.path; const PRIVATE_OUTPUT_ROOT: &str = CONFIG.output.private_output_root; const MAN_SRC: &str = include_str!("src/yagit.1");