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

Commit

Permalink
Fix --silent errors for ibrarian-puppet
Browse files Browse the repository at this point in the history
Following an upgrade to git 2.14.1 I was getting the following error:

```
[Librarian] Git: /usr/bin/git
error: unknown option `silent'
usage: git version [<options>]

    --build-options       also print build options
```

Digging into this I found voxpupuli/librarian-puppet#52 which shows a
fix by including the latest `librarianp` gem. This fixes the issue for
me however more digging into the architecture of `librarian-puppet` will
be required to understand this issue better.
  • Loading branch information
jacobbednarz committed Aug 31, 2017
1 parent c830610 commit 160bafd
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ source "https://rubygems.org"

gem "boxen", "~> 2.9.0"
gem "hiera", "~> 1.3.3"
gem "librarian-puppet", "~> 1.0.9"
gem "librarian-puppet"
gem "puppet", "3.7.1"
gem "librarianp",
git: "https://github.com/voxpupuli/librarian.git",
branch: "librarianp"
gem "puppet-lint", "0.3.2"
gem "puppetlabs_spec_helper", "0.4.1"
gem "open4", "~> 1.3.4"
Expand Down
15 changes: 12 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/voxpupuli/librarian.git
revision: 4d78d88be2d7673a136e78760085fbf9664ff27d
branch: librarianp
specs:
librarianp (0.6.3)
thor (~> 0.15)

GEM
remote: https://rubygems.org/
specs:
Expand Down Expand Up @@ -28,7 +36,7 @@ GEM
highline (1.6.21)
jmespath (1.0.2)
multi_json (~> 1.0)
json (1.8.3)
json (2.1.0)
json_pure (1.8.2)
librarian (0.1.2)
highline
Expand Down Expand Up @@ -91,7 +99,7 @@ GEM
net-ssh (>= 2.7, < 4.0)
net-telnet
sfl
thor (0.19.1)
thor (0.20.0)

PLATFORMS
ruby
Expand All @@ -101,7 +109,8 @@ DEPENDENCIES
boxen (~> 2.9.0)
deep_merge (~> 1.0)
hiera (~> 1.3.3)
librarian-puppet (~> 1.0.9)
librarian-puppet
librarianp!
net-ssh
open4 (~> 1.3.4)
puppet (= 3.7.1)
Expand Down
Binary file removed vendor/cache/json-1.8.3.gem
Binary file not shown.
Binary file added vendor/cache/json-2.1.0.gem
Binary file not shown.
Binary file removed vendor/cache/thor-0.19.1.gem
Binary file not shown.
Binary file added vendor/cache/thor-0.20.0.gem
Binary file not shown.

0 comments on commit 160bafd

Please sign in to comment.