diff options
author | 2022-02-09 17:59:00 +0100 | |
---|---|---|
committer | 2022-02-09 17:59:00 +0100 | |
commit | 120d3109342ec34aed473d36e1d81b0039ce5ba4 (patch) | |
tree | 07c902f05243a69053686a0d73aaf186c71f03f9 | |
parent | 532765719fa935c8b7032ebe8b461598c9a15e8f (diff) | |
download | rtic-120d3109342ec34aed473d36e1d81b0039ce5ba4.tar.gz rtic-120d3109342ec34aed473d36e1d81b0039ce5ba4.tar.zst rtic-120d3109342ec34aed473d36e1d81b0039ce5ba4.zip |
Demote Russian translation to WIP
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | book/ru/src/by-example/tips.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 31eaa9fa..fc07519f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -463,7 +463,7 @@ jobs: - name: Build book in Russian shell: 'script --return --quiet --command "bash {0}"' - run: cd book/ru && if mdbook build |& tee /dev/tty | grep "\[ERROR\]"; then exit 1; else exit 0; fi + run: cd book/ru && if mdbook build |& tee /dev/tty | grep "\[ERROR\]"; then echo "Russian book needs updating!"; else exit 0; fi - name: Check links run: | diff --git a/book/ru/src/by-example/tips.md b/book/ru/src/by-example/tips.md index f19cfee9..7d4fc2f4 100644 --- a/book/ru/src/by-example/tips.md +++ b/book/ru/src/by-example/tips.md @@ -83,12 +83,12 @@ $ cargo run --example ramfunc ``` console $ cargo nm --example ramfunc --release | grep ' foo::' -{{#include ../../../../ci/expected/ramfunc.grep.foo}} +{{#include ../../../../ci/expected/ramfunc.run.grep.foo}} ``` ``` console $ cargo nm --example ramfunc --release | grep ' bar::' -{{#include ../../../../ci/expected/ramfunc.grep.bar}} +{{#include ../../../../ci/expected/ramfunc.run.grep.bar}} ``` ## Обходной путь для быстрой передачи сообщений |