Commit 6e3e3e7f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2033 from mizzy/fix-hash-key-in-backup.rake

Fix hash key settings["gitlab_version"] to settings[:gitlab_version]
parents 9e8aadb0 71ff6199
......@@ -85,11 +85,11 @@ namespace :gitlab do
ENV["VERSION"] = "#{settings["db_version"]}" if settings["db_version"].to_i > 0
# restoring mismatching backups can lead to unexpected problems
if settings["gitlab_version"] != %x{git rev-parse HEAD}.gsub(/\n/,"")
if settings[:gitlab_version] != %x{git rev-parse HEAD}.gsub(/\n/,"")
puts "gitlab_version mismatch:".red
puts " Your current HEAD differs from the HEAD in the backup!".red
puts " Please switch to the following revision and try again:".red
puts " revision: #{settings["gitlab_version"]}".red
puts " revision: #{settings[:gitlab_version]}".red
exit 1
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment