@@ -273,7 +273,7 @@ def check_modules():
273273 }
274274
275275 modules_json_file = open (
276- "./docs /data/modules.stage.5.json" , encoding = "utf-8" )
276+ "./website /data/modules.stage.5.json" , encoding = "utf-8" )
277277 modules = json .load (modules_json_file )
278278 stats = {
279279 "moduleCounter" : 0 ,
@@ -566,29 +566,29 @@ def check_modules():
566566 )
567567
568568 # Writing to markdown
569- with open ("./docs /result.md" , "w" , encoding = "utf-8" ) as output_file :
569+ with open ("./website /result.md" , "w" , encoding = "utf-8" ) as output_file :
570570 output_file .write (markdown_output )
571571
572572 # Serializing json
573573 json_object = json .dumps (modules , indent = 2 )
574574
575575 # Writing to modules.json
576- with open ("./docs /data/modules.json" , "w" , encoding = "utf-8" ) as outfile :
576+ with open ("./website /data/modules.json" , "w" , encoding = "utf-8" ) as outfile :
577577 outfile .write (json_object )
578578
579579 # Serializing and minifying json
580580 json_object = json .dumps (modules )
581581
582582 # Writing to modules.min.json
583- with open ("./docs /data/modules.min.json" , "w" , encoding = "utf-8" ) as outfile :
583+ with open ("./website /data/modules.min.json" , "w" , encoding = "utf-8" ) as outfile :
584584 outfile .write (json_object )
585585
586586 # Statistics
587587 # Serializing json
588588 statistics_json_object = json .dumps (stats , indent = 2 )
589589
590590 # Writing to stats.json
591- with open ("./docs /data/stats.json" , "w" , encoding = "utf-8" ) as outfile :
591+ with open ("./website /data/stats.json" , "w" , encoding = "utf-8" ) as outfile :
592592 outfile .write (statistics_json_object )
593593
594594
0 commit comments