Skip to content
Snippets Groups Projects
Commit f4175219 authored by Kevin Lamontagne's avatar Kevin Lamontagne
Browse files

Fix gitlab:check recommendation

Running the recommendation would give out:
GNU find: paths must precede expression
parent c816dcc1
No related branches found
No related tags found
2 merge requests!2940Expanding repos and hooks paths in settings,!2440Don't setuid the repositories on installation
Loading
Loading
@@ -709,7 +709,7 @@ namespace :gitlab do
try_fixing_it(
"sudo chmod -R ug+rwX,o-rwx #{repo_base_path}",
"sudo chmod -R u-s #{repo_base_path}",
"find -type d #{repo_base_path} -print0 | sudo xargs -0 chmod g+s"
"find #{repo_base_path} -type d -print0 | sudo xargs -0 chmod g+s"
)
for_more_information(
see_installation_guide_section "Gitolite"
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment