diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-02 11:10:53 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-02 11:10:53 +0300 |
commit | 2463848086e1203dfdb86bcf7300b74c84145085 (patch) | |
tree | 64cc4b5a092b0b28a6890c8fa25584ba98bfde5b /examples/cgitize.toml | |
parent | v2.1.0 (diff) | |
download | cgitize-2463848086e1203dfdb86bcf7300b74c84145085.tar.gz cgitize-2463848086e1203dfdb86bcf7300b74c84145085.zip |
"clone_url": fix nested repository directory
Diffstat (limited to '')
-rw-r--r-- | examples/cgitize.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/cgitize.toml b/examples/cgitize.toml index 22ace41..93d4c1d 100644 --- a/examples/cgitize.toml +++ b/examples/cgitize.toml @@ -3,9 +3,9 @@ # /var/tmp/cgitize by default. output_dir = "/tmp/cgitize" -# URL to clone from the output directory. {name} is replaced by the repository -# name. -clone_url = "https://yourhost.com/git/{name}" +# URL to clone from the output directory. {repo} is replaced by the +# repository's directory path. +clone_url = "https://yourhost.com/git/{repo}" # Clones via SSH by default. clone_via_ssh = false |