From eea13a85eca781c5f70182450a0232ccdc99e590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20Go=CC=81mez?= Date: Fri, 22 Feb 2019 17:22:55 +0100 Subject: [PATCH 1/2] Document make dep step which may be needed to run make build --- docs/contributing/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/getting-started.md b/docs/contributing/getting-started.md index 9fe764c376..6976ebde91 100644 --- a/docs/contributing/getting-started.md +++ b/docs/contributing/getting-started.md @@ -2,7 +2,7 @@ ### Building -You can build ExternalDNS for your platform with `make build`. The binary will land at `build/external-dns`. +You can build ExternalDNS for your platform with `make build`, you may have to install the necessary dependencies with `sudo make dep`. The binary will land at `build/external-dns`. ### Design From 293efb27cffed1b715c7c14b60bcef093c000b97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20Go=CC=81mez?= Date: Fri, 22 Feb 2019 20:46:58 +0100 Subject: [PATCH 2/2] Turns out sudo is not necessary --- docs/contributing/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/getting-started.md b/docs/contributing/getting-started.md index 6976ebde91..3ca84b4255 100644 --- a/docs/contributing/getting-started.md +++ b/docs/contributing/getting-started.md @@ -2,7 +2,7 @@ ### Building -You can build ExternalDNS for your platform with `make build`, you may have to install the necessary dependencies with `sudo make dep`. The binary will land at `build/external-dns`. +You can build ExternalDNS for your platform with `make build`, you may have to install the necessary dependencies with `make dep`. The binary will land at `build/external-dns`. ### Design