summaryrefslogtreecommitdiff
path: root/script/create_contributor_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'script/create_contributor_list.py')
-rw-r--r--script/create_contributor_list.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/script/create_contributor_list.py b/script/create_contributor_list.py
index 6e95948b..88559b44 100644
--- a/script/create_contributor_list.py
+++ b/script/create_contributor_list.py
@@ -6,9 +6,14 @@ from pathlib import Path
from contributors_txt import create_contributors_txt
-ASTROID_BASE_DIRECTORY = Path(__file__).parent.parent
-ALIASES_FILE = ASTROID_BASE_DIRECTORY / "script/.contributors_aliases.json"
-DEFAULT_CONTRIBUTOR_PATH = ASTROID_BASE_DIRECTORY / "CONTRIBUTORS.txt"
+CWD = Path(".").absolute()
+ASTROID_BASE_DIRECTORY = Path(__file__).parent.parent.absolute()
+ALIASES_FILE = (
+ ASTROID_BASE_DIRECTORY / "script/.contributors_aliases.json"
+).relative_to(CWD)
+DEFAULT_CONTRIBUTOR_PATH = (ASTROID_BASE_DIRECTORY / "CONTRIBUTORS.txt").relative_to(
+ CWD
+)
def main():