diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-27 03:06:08 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-27 03:21:58 +0300 |
commit | b15104b1d3577666f571d1c8066f6b26b317d5fd (patch) | |
tree | f280d00bee10c46cf87e5476090d9ef246c1a51e /.ci | |
parent | minor refactoring (diff) | |
download | cgitize-b15104b1d3577666f571d1c8066f6b26b317d5fd.tar.gz cgitize-b15104b1d3577666f571d1c8066f6b26b317d5fd.zip |
cgit-repos.conf: path to my_repos.py can be relative
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/local/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/local/test.sh b/.ci/local/test.sh index 2045e1e..7f1a958 100755 --- a/.ci/local/test.sh +++ b/.ci/local/test.sh @@ -40,7 +40,7 @@ setup_cgit_repos_conf() { cat <<EOF | tee "$cgit_repos_conf_path" [DEFAULT] -my_repos = $my_repos_path +my_repos = $( basename -- "$my_repos_path" ) output = $output_path EOF } |