You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2022/06/30 14:53:20 UTC

[lucene-jira-archive] 01/05: update path for attachments

This is an automated email from the ASF dual-hosted git repository.

tomoko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-jira-archive.git

commit 949582536cee6ec00044e0f1fa6fcd6c74edf197
Author: Tomoko Uchida <to...@gmail.com>
AuthorDate: Thu Jun 30 22:52:48 2022 +0900

    update path for attachments
---
 migration/src/download_jira.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/migration/src/download_jira.py b/migration/src/download_jira.py
index be3b73d..7c3a5e7 100644
--- a/migration/src/download_jira.py
+++ b/migration/src/download_jira.py
@@ -94,7 +94,7 @@ if __name__ == "__main__":
         dump_dir.mkdir()
     assert dump_dir.exists()
 
-    att_data_dir = Path(__file__).resolve().parent.parent.joinpath(JIRA_ATTACHMENTS_DIRNAME)
+    att_data_dir = Path(__file__).resolve().parent.parent.parent.joinpath(JIRA_ATTACHMENTS_DIRNAME)
     if not att_data_dir.exists():
         att_data_dir.mkdir()
     assert att_data_dir.exists()