File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,16 @@ def main():
32
32
33
33
for path in os .listdir ('text' ):
34
34
symlink (f'../text/{ path } ' , f'src/{ path } ' )
35
+ symlink (f'../compiler_changes.md' , f'src/compiler_changes.md' )
36
+ symlink (f'../lang_changes.md' , f'src/lang_changes.md' )
37
+ symlink (f'../libs_changes.md' , f'src/libs_changes.md' )
35
38
symlink ('../README.md' , 'src/introduction.md' )
36
39
37
40
with open ('src/SUMMARY.md' , 'w' ) as summary :
38
41
summary .write ('[Introduction](introduction.md)\n \n ' )
42
+ summary .write ('- [Guidelines for compiler changes](compiler_changes.md)\n ' )
43
+ summary .write ('- [Guidelines for language changes](lang_changes.md)\n ' )
44
+ summary .write ('- [Guidelines for library changes](libs_changes.md)\n ' )
39
45
collect (summary , 'text' , 0 )
40
46
41
47
subprocess .call (['mdbook' , 'build' ])
You can’t perform that action at this time.
0 commit comments