Commit a136247fea5ef65a697b1551b3d281d97387f3ef

Authored by gitlabhq
1 parent 4fe65eb4

easy update/install

Showing 2 changed files with 2 additions and 5 deletions   Show diff stats
install.rb
... ... @@ -14,9 +14,6 @@ env = if envs.include?(ARGV[0])
14 14  
15 15 puts green " == Install for ENV=#{env} ..."
16 16  
17   -# pull from github
18   -`git pull origin 1x`
19   -
20 17 # bundle install
21 18 if env == "production"
22 19 `bundle install --without development test`
... ...
update.rb
... ... @@ -12,10 +12,10 @@ env = if envs.include?(ARGV[0])
12 12 "production"
13 13 end
14 14  
15   -puts green " == Update for ENV=#{env} from 1x"
  15 +puts green " == Update for ENV=#{env}"
16 16  
17 17 # pull from github
18   -`git pull origin 1x`
  18 +`git pull`
19 19  
20 20 # bundle install
21 21 if env == "production"
... ...