Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
git-svn-id: http://rubygems.rubyforge.org/svn/trunk@709 3d4018f9-ac1a-0410-99e9-8a154d859a19
  • Loading branch information
chadfowler committed Dec 19, 2004
1 parent 3a4b61f commit 06d47b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions rubygems/ChangeLog
@@ -1,5 +1,6 @@
2004-12-18 Chad Fowler <chad@chadfowler.com>
* lib/rubygems/version.rb: Erik Veenstra's sort patch.
* lib/rubygems.rb: Ryan Davis's installation bug fix.

2004-12-14 Gavin Sinclair <gsinclair@soyabean.com.au>

Expand Down
2 changes: 1 addition & 1 deletion rubygems/lib/rubygems.rb
Expand Up @@ -337,7 +337,7 @@ def default_dir
def ensure_gem_subdirectories(gemdir)
DIRECTORIES.each do |filename|
fn = File.join(gemdir, filename)
if ! File.exists?(fn) && File.writable?(fn)
if ! (File.exists?(fn) && File.writable?(fn))
require 'fileutils'
FileUtils.mkdir_p(fn)
end
Expand Down

0 comments on commit 06d47b9

Please sign in to comment.