소스 검색

Fix ruby-bundler with respect to BUNDLE_FROZEN (which is enabled in "ruby:onbuild" tags)

Tianon Gravi 10 년 전
부모
커밋
6ac8a8bae3
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      test/tests/ruby-bundler/container.sh

+ 2 - 2
test/tests/ruby-bundler/container.sh

@@ -8,7 +8,7 @@ cp Gemfile "$dir"
 
 # make sure that running "bundle" twice doesn't change Gemfile.lock the second time
 cd "$dir"
-bundle
+BUNDLE_FROZEN=0 bundle install
 cp Gemfile.lock{,.orig}
-bundle
+BUNDLE_FROZEN=1 bundle install
 diff -u Gemfile.lock{.orig,} >&2