Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add instructions for uninstalling CLI #1137

Merged
merged 1 commit into from
Jan 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Move2Kube is a command-line tool that accelerates the process of re-platforming

## Installation

### Using install script
### Using the install script

To install the latest stable version:

Expand All @@ -32,13 +32,28 @@ To install the bleeding edge version:
BLEEDING_EDGE='true' bash <(curl https://raw.githubusercontent.com/konveyor/move2kube/main/scripts/install.sh)
```

### Uninstall CLI installed via the install script

Simply remove the binary

```shell
rm /usr/local/bin/move2kube
```

### Using Homebrew

```shell
brew tap konveyor/move2kube
brew install move2kube
```

### Uninstall CLI installed via Homebrew

```shell
brew uninstall move2kube
brew untap konveyor/move2kube
```

## UI

To bring up UI version:
Expand Down
Loading