mirror of
https://github.com/open-mmlab/mmengine.git
synced 2025-06-03 21:54:44 +08:00
* [Fix] Fix error path of changelog.md in docs/zh_cn/index.rsts * Fix stupid commit * run bash script during build docs * run bash script during build docs * run bash script during build docs * translate notes to 说明 * update auth
10 lines
232 B
Bash
Executable File
10 lines
232 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copy *.md files from docs/ if it doesn't have a Chinese translation
|
|
|
|
for filename in $(find ../en/ -name '*.md' -printf "%P\n");
|
|
do
|
|
mkdir -p $(dirname $filename)
|
|
cp -n ../en/$filename ./$filename
|
|
done
|