From a136247fea5ef65a697b1551b3d281d97387f3ef Mon Sep 17 00:00:00 2001 From: gitlabhq Date: Fri, 14 Oct 2011 17:01:59 +0300 Subject: [PATCH] easy update/install --- install.rb | 3 --- update.rb | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/install.rb b/install.rb index f97b168a..2a84c153 100644 --- a/install.rb +++ b/install.rb @@ -14,9 +14,6 @@ env = if envs.include?(ARGV[0]) puts green " == Install for ENV=#{env} ..." -# pull from github -`git pull origin 1x` - # bundle install if env == "production" `bundle install --without development test` diff --git a/update.rb b/update.rb index f41c3617..9dae135e 100644 --- a/update.rb +++ b/update.rb @@ -12,10 +12,10 @@ env = if envs.include?(ARGV[0]) "production" end -puts green " == Update for ENV=#{env} from 1x" +puts green " == Update for ENV=#{env}" # pull from github -`git pull origin 1x` +`git pull` # bundle install if env == "production"