You've already forked wakapi-readme-stats
Merge pull request #435 from anmol098/fix/chart_file_not_found_error
Chart file is being copied properly
This commit is contained in:
@@ -94,8 +94,8 @@ class GitHubManager:
|
||||
:param src_path: Source file path.
|
||||
"""
|
||||
dst_path = join(GitHubManager.REPO.working_tree_dir, src_path)
|
||||
makedirs(dirname(src_path), exist_ok=True)
|
||||
copy(dst_path, src_path)
|
||||
makedirs(dirname(dst_path), exist_ok=True)
|
||||
copy(src_path, dst_path)
|
||||
GitHubManager.REPO.git.add(dst_path)
|
||||
|
||||
@staticmethod
|
||||
|
||||
Reference in New Issue
Block a user