From 56ba3c57d1d56278766425083ee8316d566757ab Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Thu, 10 Apr 2025 14:13:41 +0200 Subject: [PATCH] Fix build instruction At least with GNU make the `-C` option is not target specific. So for now we need two make calls. Fixes #216 --- docs/admin/getting-started/other/bare-metal.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/admin/getting-started/other/bare-metal.md b/docs/admin/getting-started/other/bare-metal.md index 3e52c260..55a2907d 100644 --- a/docs/admin/getting-started/other/bare-metal.md +++ b/docs/admin/getting-started/other/bare-metal.md @@ -72,7 +72,8 @@ This example is on Linux Ubuntu 24.04 distribution! - Run the build generate process: ```bash - make clean generate -C opencloud build + make clean generate + make -C opencloud build ``` - Initialize OpenCloud with insecure configuration and set an admin password: @@ -107,4 +108,4 @@ Your OpenCloud server is now running and ready to use 🚀 --- ### If you encounter any issues or errors, try finding a solution here: -- [Common Issues & Help](./../../resources/common-issues.md) \ No newline at end of file +- [Common Issues & Help](./../../resources/common-issues.md)