ci/cli-test.sh in conjur-cli-6.2.0 vs ci/cli-test.sh in conjur-cli-6.2.1
- old
+ new
@@ -1,6 +1,10 @@
#!/bin/bash -ex
+# This can run with mounted source directory which is used in different Ruby versions.
+# Since library support is different for different versions, clear out the lock to
+# make sure full gem resolution runs each time.
+rm -f Gemfile.lock
bundle install
# If we got passed arguments, run that as the test command. Otherwise, run the full suite of tests.
-${@-bundle exec rake jenkins}
+exec ${@-bundle exec rake jenkins}