Skip to content

Commit

Permalink
docs: fix uninstall instructions for Fish Shell
Browse files Browse the repository at this point in the history
  • Loading branch information
vkrol committed Apr 18, 2023
1 parent f273612 commit 1ed5a2a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/manage/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ rm -rf ~/.config/fish/completions/asdf.fish
2. Remove the `$HOME/.asdf` dir:

```shell:no-line-numbers
rm -rf "${ASDF_DATA_DIR:-$HOME/.asdf}"
rm -rf (string join : -- $ASDF_DATA_DIR $HOME/.asdf)
```

3. Run this command to remove all `asdf` config files:
Expand Down Expand Up @@ -271,7 +271,7 @@ pacman -Rs asdf-vm
3. Remove the `$HOME/.asdf` dir:

```shell:no-line-numbers
rm -rf "${ASDF_DATA_DIR:-$HOME/.asdf}"
rm -rf (string join : -- $ASDF_DATA_DIR $HOME/.asdf)
```

4. Run this command to remove all `asdf` config files:
Expand Down
4 changes: 2 additions & 2 deletions docs/pt-br/manage/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ rm -rf ~/.config/fish/completions/asdf.fish
2. Remova o diretório `$HOME/.asdf`:

```shell
rm -rf "${ASDF_DATA_DIR:-$HOME/.asdf}"
rm -rf (string join : -- $ASDF_DATA_DIR $HOME/.asdf)
```

3. Execute o comando para remover todos os arquivos de configurações do `asdf`:
Expand Down Expand Up @@ -273,7 +273,7 @@ pacman -Rs asdf-vm
3. Remova o diretório `$HOME/.asdf`:

```shell
rm -rf "${ASDF_DATA_DIR:-$HOME/.asdf}"
rm -rf (string join : -- $ASDF_DATA_DIR $HOME/.asdf)
```

4. Execute o comando para remover todos os arquivos de configurações do `asdf`:
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-hans/manage/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ rm -rf ~/.config/fish/completions/asdf.fish
2. 移除 `$HOME/.asdf` 目录:

```shell:no-line-numbers
rm -rf "${ASDF_DATA_DIR:-$HOME/.asdf}"
rm -rf (string join : -- $ASDF_DATA_DIR $HOME/.asdf)
```

3. 执行以下命令移除 `asdf` 所有配置文件:
Expand Down Expand Up @@ -271,7 +271,7 @@ pacman -Rs asdf-vm
3. 移除 `$HOME/.asdf` 目录:

```shell:no-line-numbers
rm -rf "${ASDF_DATA_DIR:-$HOME/.asdf}"
rm -rf (string join : -- $ASDF_DATA_DIR $HOME/.asdf)
```

4. 执行以下命令移除 `asdf` 所有配置文件:
Expand Down

0 comments on commit 1ed5a2a

Please sign in to comment.