dave4c03 wrote: > I checked, it did recurse into the sub directories on my Fedora Core 4 > system. > > The shebangs in about 60 files in script and vendor/radiant appear to be > wrong! Those files have #!/usr/bin/env ruby shebangs while "which > ruby" is > /usr/local/bin/ruby. "Whereis ruby" does not list a /usr/bin/env > option. Is there a ruby program to fix them or some way to link > "/usr/bin/env ruby" to "/usr/local/bin/ruby".
The /usr/bin/env ruby is equivalent to running which to see where Ruby is installed and then running ruby. It's possible that the env program isn't in /usr/bin in which case you could just replace the call with /usr/local/bin/ruby . -- John Long http://wiseheartdesign.com _______________________________________________ Radiant mailing list Post: [email protected] Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
