From 4f9ec555379e9c3f7142a57545085bfaf623d74f Mon Sep 17 00:00:00 2001 From: Mark Pundsack <mpundsack@gitlab.com> Date: Thu, 9 Mar 2017 01:26:47 -0600 Subject: [PATCH] Replace more occurences of the binary name --- docs/examples/gitlab.md | 2 +- docs/executors/virtualbox.md | 2 +- docs/faq/README.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/examples/gitlab.md b/docs/examples/gitlab.md index 95ee0f9b1..dda578b97 100644 --- a/docs/examples/gitlab.md +++ b/docs/examples/gitlab.md @@ -6,7 +6,7 @@ The registration token can be found at `https://gitlab.com/project_namespace/pro You can export it as a variable and run the command below as is: ```bash -gitlab-ci-multi-runner register \ +gitlab-runner register \ --non-interactive \ --url "https://gitlab.com" \ --registration-token "$REGISTRATION_TOKEN" \ diff --git a/docs/executors/virtualbox.md b/docs/executors/virtualbox.md index adbe5fcbb..d5a3fca4e 100644 --- a/docs/executors/virtualbox.md +++ b/docs/executors/virtualbox.md @@ -37,7 +37,7 @@ virtual machine. ## Create a new Runner 1. Install GitLab Runner on the host running VirtualBox -1. Register a new GitLab Runner with `gitlab-ci-multi-runner register` +1. Register a new GitLab Runner with `gitlab-runner register` 1. Select the `virtualbox` executor 1. Enter the name of the base virtual machine you created earlier (find it under the settings of the virtual machine **General > Basic > Name**) diff --git a/docs/faq/README.md b/docs/faq/README.md index 012c6b367..ddfd9524a 100644 --- a/docs/faq/README.md +++ b/docs/faq/README.md @@ -165,9 +165,9 @@ causes to why this happens: reinstall the `LaunchAgent` script: ``` - gitlab-ci-multi-runner uninstall - gitlab-ci-multi-runner install - gitlab-ci-multi-runner start + gitlab-runner uninstall + gitlab-runner install + gitlab-runner start ``` Then you can verify that `~/Library/LaunchAgents/gitlab-runner.plist` has -- GitLab