Skip to content
Snippets Groups Projects
Commit 58472180 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix upgrader


It created branch based on current branch which is an old version

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 6bc3b5df
No related branches found
No related tags found
1 merge request!6886DELETE THIS MERGE REQUEST
Loading
Loading
@@ -51,7 +51,7 @@ module Gitlab
{
"Stash changed files" => "git stash",
"Get latest code" => "git fetch",
"Switch to new version" => "git checkout -b v#{latest_version}",
"Switch to new version" => "git checkout v#{latest_version}",
"Install gems" => "bundle",
"Migrate DB" => "bundle exec rake db:migrate RAILS_ENV=production",
"Recompile assets" => "bundle exec rake assets:clean assets:precompile RAILS_ENV=production",
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