bin/probe in utils-0.49.0 vs bin/probe in utils-0.49.1
- old
+ new
@@ -26,12 +26,10 @@
EOT
exit 1
end
def cmd(*args)
- if ENV.key?('BUNDLE_GEMFILE')
- args.unshift 'bundle', 'exec'
- end
+ args.unshift 'bundle', 'exec'
puts Shellwords.join(args)
system(*args) or exit $?.exitstatus
end
def find_cmd(*cmds, on_fail: -> *cmds { raise fail "no #{cmds * '|'} command found" })