Commit 0dcfad6a by Erik Michaels-Ober

Merge pull request #271 from nobu/master

No needs to chmod all directories.
parents 310bb48a 763f96da
...@@ -408,7 +408,7 @@ after_install_package() { ...@@ -408,7 +408,7 @@ after_install_package() {
fix_directory_permissions() { fix_directory_permissions() {
# Ensure installed directories are not world-writable to avoid Bundler warnings # Ensure installed directories are not world-writable to avoid Bundler warnings
find "$PREFIX_PATH" -type d -exec chmod go-w {} \; find "$PREFIX_PATH" -type d \( -perm -020 -o -perm -002 \) -exec chmod go-w {} \;
} }
require_gcc() { require_gcc() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment