Skip to content
Snippets Groups Projects
Commit 2ddafa63 authored by Matt Selsky's avatar Matt Selsky
Browse files

Use fetch on FreeBSD, instead of wget

fetch has been a part of FreeBSD since 2.1.5 per
https://www.freebsd.org/cgi/man.cgi?query=fetch

wget needs to be installed from ports before it can be used on FreeBSD
parent c3dfc616
No related branches found
No related tags found
No related merge requests found
...@@ -31,10 +31,10 @@ Here are the steps to install and configure GitLab Runner under FreeBSD: ...@@ -31,10 +31,10 @@ Here are the steps to install and configure GitLab Runner under FreeBSD:
```sh ```sh
# For amd64 # For amd64
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-amd64 sudo fetch -o /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-amd64
# For i386 # For i386
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-386 sudo fetch -o /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-386
``` ```
You can download a binary for every available version as described in You can download a binary for every available version as described in
...@@ -155,10 +155,10 @@ To upgrade GitLab Runner from a version prior to 10.0: ...@@ -155,10 +155,10 @@ To upgrade GitLab Runner from a version prior to 10.0:
```sh ```sh
# For amd64 # For amd64
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-amd64 sudo fetch -o /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-amd64
# For i386 # For i386
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-386 sudo fetch -o /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-386
sudo chmod +x /usr/local/bin/gitlab-runner sudo chmod +x /usr/local/bin/gitlab-runner
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment