Projects
Home     Blog     Install     New Ticket     View Tickets     Browse Source

Ticket #29 (closed defect: fixed)

Opened 10 months ago

Last modified 10 months ago

Xcode templates installed with Subversion support directories.

Reported by: alloye@… Owned by: lsansonetti@…
Priority: blocker Milestone: MacRuby 0.1
Component: MacRuby Keywords:
Cc:

Description

In r67/trunk, the Xcode templates contain unwanted Subversion support directories. This may create conflicts for developers who use Subversion for local projects.

[MacRuby]: find /Library/Application\ Support/Developer -type d -name .svn
/Library/Application Support/Developer/3.0/Xcode/Project Templates/.svn
/Library/Application Support/Developer/3.0/Xcode/Project Templates/Application/.svn
/Library/Application Support/Developer/3.0/Xcode/Project Templates/Application/MacRuby Application/.svn
/Library/Application Support/Developer/3.0/Xcode/Project Templates/Application/MacRuby Application/English.lproj/.svn
/Library/Application Support/Developer/3.0/Xcode/Project Templates/Application/MacRuby Application/English.lproj/MainMenu.nib/.svn
/Library/Application Support/Developer/3.0/Xcode/Project Templates/Application/MacRuby Application/MacRubyApp.xcodeproj/.svn

Change History

Changed 10 months ago by lsansonetti@…

  • status changed from new to closed
  • resolution set to fixed

Oops this is a stupid mistake.

-Dir.glob(File.join(dest_templ_dir, '**', '.svn')).each { |x| rm_f(x) } +Dir.glob(File.join(dest_templ_dir, '**', '.svn')).each { |x| rm_rf(x) }

Should be fixed as r70/trunk.

Changed 10 months ago by lsansonetti@…

  • milestone changed from MacRuby 1.0 to MacRuby 0.1
Note: See TracTickets for help on using tickets.