Skip to content

Commit 632d9a5

Browse files
committed
avoid deprecation warnings
1 parent cb6a93a commit 632d9a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

script/bootstrap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
1010
rm -rf "${DIR}/.bundle"
1111

1212
echo 'Running bundler'
13-
bundle install --no-prune --path vendor/bundle --local
13+
bundle config set --local no_prune 'true'
14+
bundle config set --local path 'vendor/bundle'
15+
bundle install --local
1416
bundle clean
1517
bundle binstubs --force puppet pry rake rspec-core rubocop
1618
chmod 0755 bin/octofacts-updater

0 commit comments

Comments
 (0)