File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -240,8 +240,10 @@ def main():
240240
241241 # Setting path for the log JSON file
242242 ROOT_INDEX_FILE_PATH = 'index.md'
243- THEORY_INDEX_FILE_PATH = 'Theory/README.md'
244- SOLVED_PROBLEM_INDEX_FILE_PATH = 'Solved-Problems/README.md'
243+ THEORY_INDEX_FILE_PATH = 'Theory/index.md'
244+ THEORY_README_FILE_PATH = 'Theory/README.md'
245+ SOLVED_PROBLEM_INDEX_FILE_PATH = 'Solved-Problems/index.md'
246+ SOLVED_PROBLEM_README_FILE_PATH = 'Solved-Problems/README.md'
245247 CONTRIBUTORS_LOG = '.github/data/contributors-log.json'
246248
247249 # Retrieving data from log file
@@ -255,7 +257,9 @@ def main():
255257 # Updating All required files
256258 UpdateFileContent (ROOT_INDEX_FILE_PATH )
257259 UpdateFileContent (THEORY_INDEX_FILE_PATH , lambda core : core == 'Theory' )
260+ UpdateFileContent (THEORY_README_FILE_PATH , lambda core : core == 'Theory' )
258261 UpdateFileContent (SOLVED_PROBLEM_INDEX_FILE_PATH , lambda core : core == 'Solved-Problems' )
262+ UpdateFileContent (SOLVED_PROBLEM_README_FILE_PATH , lambda core : core == 'Solved-Problems' )
259263
260264if __name__ == '__main__' :
261265 main ()
You can’t perform that action at this time.
0 commit comments