diff options
| author | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-02-24 16:57:48 +0100 |
|---|---|---|
| committer | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-03-02 23:59:07 +0100 |
| commit | 686e3a0d6c26b26266d474a9442b8ed95ad899d3 (patch) | |
| tree | 33f87685ff8ea5e4d8d8434a34bbd831b422e816 | |
| parent | 99af039bc016538725c016c329d9cd14bf5be76a (diff) | |
| download | gitlab-shell-686e3a0d6c26b26266d474a9442b8ed95ad899d3.tar.gz | |
Add missing rsync
| -rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ff3c8c9..4b8e938 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,8 @@ image: "ruby:2.3" before_script: - export PATH=~/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin - - apt-get update + - apt update + - apt install rsync -y - gem install --bindir /usr/local/bin bundler - cp config.yml.example config.yml - bundle install |
