summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rwxr-xr-xbin/install3
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 51d1d89..8269ed1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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|