Skip to content
This repository has been archived by the owner on Dec 4, 2019. It is now read-only.

Commit

Permalink
Fix setup command
Browse files Browse the repository at this point in the history
In the previous version, it could not execute db:migrate command.
  • Loading branch information
Ryo Nakamura committed Jul 11, 2013
1 parent b35bbac commit c1d9061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/altria/command.rb
Expand Up @@ -39,7 +39,7 @@ def name
end

def setup
system(env, "cd #{root_path} && bundle install && bundle exec rake db:create db:migrate")
system(env, "cd #{root_path} && bundle install && bundle exec rake db:create && bundle exec rake db:migrate")
end

def start
Expand Down

0 comments on commit c1d9061

Please sign in to comment.