I got this failure for a setup:
ERROR: "bundle check" was called with arguments ["&&", "bundle", "install"]
Usage: "bundle check [OPTIONS]"
ERROR Check `bundle-update` failed. The fix ran and Failed.
Turns out it was because I was using &&:
apiVersion: scope.github.com/v1alpha
kind: ScopeDoctorSetup
metadata:
name: bundle-update
spec:
# order: 100 # default value
cache:
paths:
- Gemfile*
- .ruby-version
setup:
exec:
- bundle check && bundle install
description: Check for updates to bundled dependencies
I wonder if it's useful to always run things in a shell? Or if it could be identifed with a better error message?
I got this failure for a setup:
Turns out it was because I was using
&&:I wonder if it's useful to always run things in a shell? Or if it could be identifed with a better error message?