1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-02 02:15:23 +02:00

rustup-toolchain: fix missing toolchain subcommand in all commands (#16324)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
xuiqzy 2025-05-04 04:42:32 +02:00 committed by GitHub
parent 5305776d45
commit 790232126a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

View file

@ -6,16 +6,16 @@
- 주어진 툴체인 설치 또는 업데이트:
`rustup install {{툴체인}}`
`rustup toolchain install {{툴체인}}`
- 툴체인 제거:
`rustup uninstall {{툴체인}}`
`rustup toolchain uninstall {{툴체인}}`
- 설치된 툴체인 나열:
`rustup list`
`rustup toolchain list`
- 디렉토리에 대한 심볼릭 링크를 통해 사용자 지정 툴체인 생성:
`rustup link {{사용자_지정_툴체인_이름}} {{경로/대상/폴더}}`
`rustup toolchain link {{사용자_지정_툴체인_이름}} {{경로/대상/폴더}}`

View file

@ -6,16 +6,16 @@
- Install or update a given toolchain:
`rustup install {{toolchain}}`
`rustup toolchain install {{toolchain}}`
- Uninstall a toolchain:
`rustup uninstall {{toolchain}}`
`rustup toolchain uninstall {{toolchain}}`
- List installed toolchains:
`rustup list`
`rustup toolchain list`
- Create a custom toolchain by symlinking to a directory:
`rustup link {{custom_toolchain_name}} {{path/to/directory}}`
`rustup toolchain link {{custom_toolchain_name}} {{path/to/directory}}`