Skip to content

Commit

Permalink
Update README for new auto-confirm option
Browse files Browse the repository at this point in the history
Update the README with information about the new -y option
to automatically confirm an uninstall or update/overwrite.
  • Loading branch information
sleberknight authored Jun 18, 2024
1 parent 4ec1c16 commit 93aaa52
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,19 @@ Or, to install to a custom directory and/or with a custom script name:
curl -s https://raw.githubusercontent.com/kiwiproject/kiwiproject-changelog/main/etc/install/install.sh | bash -s -- -d <dir> -n <script-name>
```

Currently, commands that require user confirmation (such as when uninstalling or if you attempt to update an existing installation) won't
work using a `curl`-based installation. To uninstall you can simply delete the directory, or follow the instructions below to
clone the repository locally and run the `install.sh` script to uninstall, update, etc.
Commands that require user confirmation (such as when uninstalling or if you attempt to update an existing installation)
work using a `curl`-based installation, but you must use the `-y` (yes) option to avoid interactive prompts and
auto-confirm. To uninstall you can:

```shell
curl -s https://raw.githubusercontent.com/kiwiproject/kiwiproject-changelog/main/etc/install/install.sh | bash -s -- -u -y
```

To install the latest version and overwrite an existing installation, just run the original curl command again with `-y`:

```shell
curl -s https://raw.githubusercontent.com/kiwiproject/kiwiproject-changelog/main/etc/install/install.sh | bash -s -- -y
```

### Execute the installation script locally

Expand Down

0 comments on commit 93aaa52

Please sign in to comment.