No idea why this was pulled out.

This commit is contained in:
Hampton Catlin 2015-11-27 13:19:33 -08:00
parent 44813e615d
commit 4fb38d55e5

View File

@ -1,10 +1,3 @@
def bundle(cmd)
old_bundle_gemfile = ENV["BUNDLE_GEMFILE"]
ENV.delete("BUNDLE_GEMFILE")
sh %{bundle #{cmd}}
ensure
ENV["BUNDLE_GEMFILE"]
end
task :sass do
unless Dir.exists?(".sass")
@ -21,7 +14,7 @@ task :sass do
sh %{git checkout #{File.read("VERSION").strip}}
end
bundle 'install'
sh %{bundle #{install}}
end
end