summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-02 18:36:04 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-02 18:36:04 -0800
commit76524ecf621048dce84465df57785749b0a53968 (patch)
tree8641bea258baa8dfd91f99fa90abd5c5825fd527
parent1b20cc7d490b4c2b96bd8cac129b6fca19cd1a26 (diff)
parenta09ab3b01565bf97b9d2198deed10caaf283eda4 (diff)
downloadgitlab-shell-76524ecf621048dce84465df57785749b0a53968.tar.gz
Merge branch 'master' of github.com:gitlabhq/gitlab-shell
-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