Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2015-03-21 02:13:03 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-21 02:28:11 +0300
commit3b1842f67bd0019093e7f1c01a3c8fa0de096910 (patch)
tree479046d3177d3712d73a869eaaa9dece2853a954
parentd9415bf9c26e468ac40fb4c81ebee93c4265df1d (diff)
Fix typo.
-rw-r--r--config/initializers/public_key.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/initializers/public_key.rb b/config/initializers/public_key.rb
index b70c665f80d..e4f09a2d020 100644
--- a/config/initializers/public_key.rb
+++ b/config/initializers/public_key.rb
@@ -1,2 +1,2 @@
-path = File.expand_path("~/.ssh/bitbucket_isa.pub")
+path = File.expand_path("~/.ssh/bitbucket_rsa.pub")
Gitlab::BitbucketImport.public_key = File.read(path) if File.exist?(path)