From fc02cb0d0eb552f909aaad6bab9a8035bed517c7 Mon Sep 17 00:00:00 2001 From: Till Faelligen <2353100+S7evinK@users.noreply.github.com> Date: Thu, 26 Jan 2023 13:08:46 +0100 Subject: [PATCH] Remove traces of build.sh --- README.md | 2 +- docs/development/sytest.md | 2 +- docs/installation/manual/4_signingkey.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dfef11bae..12560cc04 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ The following instructions are enough to get Dendrite started as a non-federatin ```bash $ git clone https://github.com/matrix-org/dendrite $ cd dendrite -$ ./build.sh +$ go build -o bin/ ./cmd/... # Generate a Matrix signing key for federation (required) $ ./bin/generate-keys --private-key matrix_key.pem diff --git a/docs/development/sytest.md b/docs/development/sytest.md index 57403cd3b..8641eed70 100644 --- a/docs/development/sytest.md +++ b/docs/development/sytest.md @@ -24,7 +24,7 @@ After running the tests, a script will print the tests you need to add to You should proceed after you see no build problems for dendrite after running: ```sh -./build.sh +go build -o bin/ ./cmd/... ``` If you are fixing an issue marked with diff --git a/docs/installation/manual/4_signingkey.md b/docs/installation/manual/4_signingkey.md index 43d9fa565..bd9c242ab 100644 --- a/docs/installation/manual/4_signingkey.md +++ b/docs/installation/manual/4_signingkey.md @@ -12,7 +12,7 @@ All Matrix homeservers require a signing private key, which will be used to auth federation requests and events. The `generate-keys` utility can be used to generate a private key. Assuming that Dendrite was -built using `build.sh`, you should find the `generate-keys` utility in the `bin` folder. +built using `go build -o bin/ ./cmd/...`, you should find the `generate-keys` utility in the `bin` folder. To generate a Matrix signing private key: