diff options
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r-- | lib/bundler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb index a195405fd9..3cb1f076a0 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -493,7 +493,7 @@ module Bundler end def mkdir_p(path) - SharedHelpers.filesystem_access(path, :write) do |p| + SharedHelpers.filesystem_access(path, :create) do |p| FileUtils.mkdir_p(p) end end |