commit d35edba2e6254000238e85833d957185bb3d56c9
parent f9d0f813ec5f2554a66b1213fdf969d14955950f
Author: Amit Dutta <mail@amit.is-a.dev>
Date: Tue, 2 Jun 2026 14:42:11 +0530
Update file paths to relative values
Diffstat:
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/md.py b/md.py
@@ -5,9 +5,9 @@ import re
# Configuration
# ---------------------------------------------------------------------------
-FILES_LIST = r"G:\bsc\list.txt"
-BSC_ROOT = r"G:\bsc"
-DOCS_OUTPUT = r"G:\bsc\docs-new"
+FILES_LIST = "list.txt"
+BSC_ROOT = "."
+DOCS_OUTPUT = "docs-new"
RAW_BASE_URL = "https://raw.usercontent.amit.is-a.dev"
# Exact paths to the index.md files that should never be updated/overwritten.
@@ -414,4 +414,4 @@ def main():
if __name__ == "__main__":
- main()-
\ No newline at end of file
+ main()