diff options
-rw-r--r-- | CHANGELOG | 3 | ||||
-rwxr-xr-x | bin/install | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,6 @@ +v2.5.4 + - Remove recursive commands from bin/install + v2.5.3 - Improve git-annex integration diff --git a/bin/install b/bin/install index 64ae726..9847ae1 100755 --- a/bin/install +++ b/bin/install @@ -15,8 +15,7 @@ commands = [ %W(chmod 700 #{key_dir}), %W(touch #{config.auth_file}), %W(chmod 600 #{config.auth_file}), - %W(chmod -R ug+rwX,o-rwx #{config.repos_path}), - %W(find #{config.repos_path} -type d -exec chmod g+s {} ;) + %W(chmod ug+rwX,o-rwx #{config.repos_path}), ] commands.each do |cmd| |