Skip to content
This repository was archived by the owner on May 12, 2018. It is now read-only.

Commit a5b6826

Browse files
committed
Merge branch 'master' of github.com:gitlabhq/gitlab-ci-runner
2 parents 529a54f + aa69c52 commit a5b6826

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.hound.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
StringLiterals:
2+
EnforcedStyle: single_quotes
3+
Enabled: true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sudo apt-get install -y wget curl gcc libxml2-dev libxslt-dev libcurl4-openssl-d
4545
b) MacOSX (make sure you have [homebrew](http://brew.sh/) installed)
4646

4747
```bash
48-
sudo brew install icu4c
48+
brew install icu4c
4949
```
5050

5151
Install Ruby from source:
@@ -130,7 +130,7 @@ It will remove the runner's information from the coordinator and remove the give
130130
```
131131
exit;
132132
cd /home/gitlab_ci_runner/gitlab-ci-runner
133-
sudo cp ./lib/support/upstart/gitlab-ci-runner.conf /etc/init.d/
133+
sudo cp ./lib/support/upstart/gitlab-ci-runner.conf /etc/init/
134134
```
135135

136136

lib/setup.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def initialize
1414
def build_config
1515
url = ENV['CI_SERVER_URL']
1616
unless url
17-
puts 'Please enter the gitlab-ci coordinator URL (e.g. http://gitlab-ci.org:3000/ )'
17+
puts 'Please enter the gitlab-ci coordinator URL (e.g. http://gitlab-ci.org/ )'
1818
url = gets.chomp
1919
end
2020

lib/support/init.d/gitlab_ci_runner.default.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ INIT_LOG="/var/log/gitlab_ci_runner.log"
2222

2323
# runners_pid_path defines a file in which the individual runners place their pids.
2424
# The default is "$pid_path/runners.pid"
25-
RUNNERS_PID="$PID_PATH/runners.pid"
25+
RUNNER_PID="$PID_PATH/runners.pid"

0 commit comments

Comments
 (0)