update initialize script for projects that don't use gemfile.erb
This commit is contained in:
parent
b0cd8bc42b
commit
d5202c6193
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
|
if File.file?('Gemfile.erb')
|
||||||
pwd = Dir.pwd
|
pwd = Dir.pwd
|
||||||
|
|
||||||
Dir.chdir '..' do
|
Dir.chdir '..' do
|
||||||
|
@ -13,6 +14,10 @@ end
|
||||||
|
|
||||||
puts "Bundling for local environment"
|
puts "Bundling for local environment"
|
||||||
system %{script/gemfile local}
|
system %{script/gemfile local}
|
||||||
|
else
|
||||||
|
puts "Bundling..."
|
||||||
|
system %{bundle}
|
||||||
|
end
|
||||||
|
|
||||||
puts "Installing git hooks"
|
puts "Installing git hooks"
|
||||||
system %{script/install-git-hooks}
|
system %{script/install-git-hooks}
|
||||||
|
|
Loading…
Reference in New Issue