From c3c95bec5757406d0290e208133bcb5dfd3f945b Mon Sep 17 00:00:00 2001
From: Michael Kriese <michael.kriese@visualon.de>
Date: Thu, 3 Aug 2023 13:18:13 +0200
Subject: [PATCH] docs(platform/bitbucket-server): wrong start commands
 (#23683)

---
 lib/modules/platform/bitbucket-server/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/modules/platform/bitbucket-server/index.md b/lib/modules/platform/bitbucket-server/index.md
index 8d4ec5417b..1eae83c077 100644
--- a/lib/modules/platform/bitbucket-server/index.md
+++ b/lib/modules/platform/bitbucket-server/index.md
@@ -47,7 +47,7 @@ Once it's running and initialized, the quickest way to testing with Renovate is:
 At this point you should have a project ready for Renovate, and the `@renovate-bot` account ready to run on it. You can then run like this:
 
 ```
-yarn start --platform=bitbucket-server --endpoint=http://localhost:7990 --git-fs=http --username=renovate-bot --password=abc123456789! --log-level=debug --autodiscover=true
+npx renovate --platform=bitbucket-server --endpoint=http://localhost:7990 --git-fs=http --username=renovate-bot --password=abc123456789! --log-level=debug --autodiscover=true
 ```
 
 Alternatively using env:
@@ -59,7 +59,7 @@ export RENOVATE_GIT_FS=http
 export RENOVATE_USERNAME=renovate-bot
 export RENOVATE_PASSWORD=abc123456789!
 export LOG_LEVEL=debug
-yarn start --autodiscover=true
+npx renovate --autodiscover=true
 ```
 
 You should then get a "Configure Renovate" onboarding PR in any projects that `@renovate-bot` has been invited to.
-- 
GitLab