commit 630169b1b9f202744e435a7392de76ce358e2bf7
Author: poVoq <jkmakowka@yahoo.de>
Date: Wed Dec 10 11:20:00 2025 +0000
diff --git a/docs/compiling.md b/docs/compiling.md
index d3b5d42..05d08e3 100644
--- a/docs/compiling.md
+++ b/docs/compiling.md
@@ -824 +824 @@ Go 1.18+ is required. Make sure you have [Go](https://golang.org/doc/install) pr
Building the binary with **all** the bridges enabled needs about 3GB RAM to compile.
You can reduce this memory requirement to 0,5GB RAM by adding the `nomsteams` tag if you don't need/use the Microsoft Teams bridge.
-Matterbridge can be build without gcc/c-compiler: If you're running on windows first run `set CGO_ENABLED=0` on other platforms you prepend `CGO_ENABLED=0` to the `go build` command. (eg `CGO_ENABLED=0 go install github.com/42wim/matterbridge`)
+Matterbridge can be build without gcc/c-compiler: If you're running on windows first run `set CGO_ENABLED=0` on other platforms you prepend `CGO_ENABLED=0` to the `go build` command. (eg `CGO_ENABLED=0 go install github.com/matterbridge-org/matterbridge`)
To install the latest stable run:
```bash
-go install github.com/42wim/matterbridge
+go install github.com/matterbridge-org/matterbridge
```
To install the latest dev run:
```bash
-go install github.com/42wim/matterbridge@master
+go install github.com/matterbridge-org/matterbridge@master
```
To install the latest stable run without msteams or zulip bridge:
```bash
-go install -tags nomsteams,nozulip github.com/42wim/matterbridge
+go install -tags nomsteams,nozulip github.com/matterbridge-org/matterbridge
```
You should now have matterbridge binary in the ~/go/bin directory:
@@ -4018 +4018 @@ matterbridge
Because the library we use for Whatsapp multidevice support includes a GPL3 library we can not provide you binaries.
(as this would require the Matterbridge to change it license to GPL)
-Matterbridge can be build without gcc/c-compiler: If you're running on windows first run `set CGO_ENABLED=0` on other platforms you prepend `CGO_ENABLED=0` to the `go build` command. (eg `CGO_ENABLED=0 go install github.com/42wim/matterbridge`)
+Matterbridge can be build without gcc/c-compiler: If you're running on windows first run `set CGO_ENABLED=0` on other platforms you prepend `CGO_ENABLED=0` to the `go build` command. (eg `CGO_ENABLED=0 go install github.com/matterbridge-org/matterbridge`)
So this means you have to build it yourself using the instructions below:
```bash
-go install -tags whatsappmulti github.com/42wim/matterbridge@master
+go install -tags whatsappmulti github.com/matterbridge-org/matterbridge@master
```
If you're low on memory and don't need msteams:
```bash
-go install -tags nomsteams,whatsappmulti github.com/42wim/matterbridge@master
+go install -tags nomsteams,whatsappmulti github.com/matterbridge-org/matterbridge@master
```
You should now have matterbridge binary in the ~/go/bin directory: