# Patch Installation

1. Download bor and navigate to the directory:

```
git clone https://github.com/maticnetwork/bor.git
cd bor
```

2. Check out the latest release:

```
git checkout RELEASE_TAG
```

where `RELEASE_TAG` is the tag of the release version that you install.

For instance: `git checkout v0.2.16`

{% hint style="info" %}
a list of the latest bor releases can be found at <https://github.com/maticnetwork/bor/releases>
{% endhint %}

3. Apply the patch which will make your sentry announce all transactions:

```
git apply /path/to/sentry-patch/announce_only.patch
```

4. Stop Bor:

```
sudo service bor stop
```

5. Install Bor as normal:

```
make bor-all
```

or

```
docker build --tag bor:latest .
```

6. Start Bor:

```
sudo service bor start
```

[<- Back to "Installing from Source"](https://fastlane-labs.gitbook.io/polygon-fastlane/getting-started-as-a-validator/patching-your-sentry-nodes-with-the-fastlane-patch/installing-from-source)
