diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-13 16:03:54 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-13 16:24:41 +0300 |
commit | e3bbdf541c0d8953910d3a2319c4834163093b56 (patch) | |
tree | d1e1ca132e2e24e87f1f9c61bc17de4c996c8cc8 /pull/main.py | |
parent | add Dockerfile (diff) | |
download | cgitize-e3bbdf541c0d8953910d3a2319c4834163093b56.tar.gz cgitize-e3bbdf541c0d8953910d3a2319c4834163093b56.zip |
write to /var/tmp/cgit-repos/output by default
Diffstat (limited to 'pull/main.py')
-rw-r--r-- | pull/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pull/main.py b/pull/main.py index a4eeeab..e5543bc 100644 --- a/pull/main.py +++ b/pull/main.py @@ -9,7 +9,7 @@ from pull.cgit import CGit, Output from pull.repo import BitbucketRepo, GithubRepo, Repo -DEFAULT_OUTPUT_DIR = 'output' +DEFAULT_OUTPUT_DIR = '/var/tmp/cgit-repos/output' DEFAULT_CONFIG_PATH = '/etc/cgit-repos/cgit-repos.conf' DEFAULT_MY_REPOS_PATH = '/etc/cgit-repos/my_repos.py' |