소스 검색

fix docs build command

Evan Almloff 2 년 전
부모
커밋
ae8a7ccbd2
1개의 변경된 파일7개의 추가작업 그리고 9개의 파일을 삭제
  1. 7 9
      docs/README.md

+ 7 - 9
docs/README.md

@@ -8,14 +8,12 @@ cargo install mdbook --git https://github.com/Demonthos/mdBook.git --branch mast
 
 Then, you can build the documentation by running:
 
-Linux and MacOS:
-
 ```sh
-cd docs && cd guide && mdbook build -d ../nightly/guide && cd .. && cd router && mdbook build -d ../nightly/router && cd .. && cd ..
-```
-
-Windows:
-
-```cmd
-cd docs; cd guide; mdbook build -d ../nightly/guide; cd ..; cd router; mdbook build -d ../nightly/router; cd ..; cd ..
+cd docs
+cd guide
+mdbook build -d ../nightly/guide
+cd ..
+cd router
+mdbook build -d ../nightly/router
+cd ../../
 ```