aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cgit/repos/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cgit/repos/main.py b/cgit/repos/main.py
index c8af42f..bc8fa72 100644
--- a/cgit/repos/main.py
+++ b/cgit/repos/main.py
@@ -66,7 +66,8 @@ class Config:
@property
def output(self):
- return self.impl.get('DEFAULT', 'output', fallback=DEFAULT_OUTPUT_DIR)
+ path = self.impl.get('DEFAULT', 'output', fallback=DEFAULT_OUTPUT_DIR)
+ return self._resolve_relative(path)
@property
def clone_url(self):