aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorTeddy Wing2021-06-25 19:55:50 +0200
committerTeddy Wing2021-06-25 19:55:50 +0200
commit82966ee8d37f64b4d0b148507a775e8d25116548 (patch)
tree78ca0d472d08d343b58d34ca36c0541a91d6a078 /src/main.rs
parent3a595fddc90837a51f866cf3d2c7d60d543b2399 (diff)
downloadreflectub-82966ee8d37f64b4d0b148507a775e8d25116548.tar.bz2
set_agefile_time(): Don't add `agefile=info/web/last-modified` to cgitrc
We don't need to set the `agefile` config value because "info/web/last-modified" is already CGit's default value for the setting.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs
index 0cf4328..6ff441b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -393,11 +393,6 @@ fn set_agefile_time<P: AsRef<Path>>(
&agefile_path.display(),
))?;
- repo_cgitrc_append(
- &repo_path,
- "agefile=info/web/last-modified",
- )?;
-
Ok(())
}