Skip to content

Commit

Permalink
[Rakefile] Fix gem installability
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Apr 9, 2015
1 parent 47f789d commit 18658b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

##### Bug Fixes

* None.
* Make the gem installable.
[Samuel Giddins](https://github.com/segiddins)


## 0.1.5
Expand Down
3 changes: 1 addition & 2 deletions lib/jazzy/SourceKitten/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@

task :prepare do
Dir.glob('*.framework').each do |fw|
p fw
Dir.chdir(fw) do
basename = File.basename(fw, '.framework')
FileUtils.rm(basename)
FileUtils.rm_f(basename)

File.symlink('A', 'Versions/Current')
File.symlink("Versions/Current/#{basename}", "#{basename}")
Expand Down

0 comments on commit 18658b2

Please sign in to comment.