diff options
| author | Teddy Wing | 2021-06-25 19:55:50 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2021-06-25 19:55:50 +0200 | 
| commit | 82966ee8d37f64b4d0b148507a775e8d25116548 (patch) | |
| tree | 78ca0d472d08d343b58d34ca36c0541a91d6a078 | |
| parent | 3a595fddc90837a51f866cf3d2c7d60d543b2399 (diff) | |
| download | reflectub-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.
| -rw-r--r-- | src/main.rs | 5 | 
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(())  } | 
