summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/runner_instructions/templates/windows/install.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/runner_instructions/templates/windows/install.ps1')
-rw-r--r--lib/gitlab/ci/runner_instructions/templates/windows/install.ps18
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/ci/runner_instructions/templates/windows/install.ps1 b/lib/gitlab/ci/runner_instructions/templates/windows/install.ps1
index dc37f88543c..019363fc3f7 100644
--- a/lib/gitlab/ci/runner_instructions/templates/windows/install.ps1
+++ b/lib/gitlab/ci/runner_instructions/templates/windows/install.ps1
@@ -1,13 +1,13 @@
# Run PowerShell: https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-windows-powershell?view=powershell-7#with-administrative-privileges-run-as-administrator
-# Create a folder somewhere in your system ex.: C:\GitLab-Runner
+# Create a folder somewhere on your system, for example: C:\GitLab-Runner
New-Item -Path 'C:\GitLab-Runner' -ItemType Directory
-# Enter the folder
+# Change to the folder
cd 'C:\GitLab-Runner'
-# Dowload binary
+# Download binary
Invoke-WebRequest -Uri "${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION}" -OutFile "gitlab-runner.exe"
-# Register the Runner (steps below), then run
+# Register the runner (steps below), then run
.\gitlab-runner.exe install
.\gitlab-runner.exe start