mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
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
|