summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2015-02-27 10:32:30 +0100
committerRobert Schilling <rschilling@student.tugraz.at>2015-02-27 10:32:30 +0100
commita09ab3b01565bf97b9d2198deed10caaf283eda4 (patch)
tree24481393762933910b1244ba12a7a678a36fec4c
parentc2b324a9411a3b6150e04976d2b36dd99c7a0887 (diff)
parentdf4fe3833df4636eb8228a66489ed63afebaac40 (diff)
downloadgitlab-shell-a09ab3b01565bf97b9d2198deed10caaf283eda4.tar.gz
Merge pull request #214 from p8/master
Correct spelling: Symlinking is short for symbolic linking
-rw-r--r--lib/gitlab_projects.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb
index 05ee211..11f3820 100644
--- a/lib/gitlab_projects.rb
+++ b/lib/gitlab_projects.rb
@@ -23,7 +23,7 @@ class GitlabProjects
local_hooks_directory = File.join(path, 'hooks')
if File.realpath(local_hooks_directory) != File.realpath(GLOBAL_HOOKS_DIRECTORY)
- $logger.info "Moving existing hooks directory and simlinking global hooks directory for #{path}."
+ $logger.info "Moving existing hooks directory and symlinking global hooks directory for #{path}."
FileUtils.mv(local_hooks_directory, "#{local_hooks_directory}.old.#{Time.now.to_i}")
FileUtils.ln_s(GLOBAL_HOOKS_DIRECTORY, local_hooks_directory)
else