Method: Bundler::FileUtils::Entry_#chmod
- Defined in:
- lib/bundler/vendor/fileutils/lib/fileutils.rb
#chmod(mode) ⇒ Object
2205 2206 2207 2208 2209 2210 2211 2212 |
# File 'lib/bundler/vendor/fileutils/lib/fileutils.rb', line 2205 def chmod(mode) if symlink? File.lchmod mode, path() if have_lchmod? else File.chmod mode, path() end rescue Errno::EOPNOTSUPP end |