Fix non-existing option of 'bundle install'
The bundle install commands supports the --minimal-deps option instead of the --minimal-dep option. (The last 's' is missing) This fixes the wrong option used. Change-Id: Ic72c97f6230d6b730b2688f0f87bb5de8b35f4f1
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -2,7 +2,7 @@
set -ex
GEM_INSTALL_CMD="gem install --no-user-install --minimal-dep --verbose --no-document"
GEM_INSTALL_CMD="gem install --no-user-install --minimal-deps --verbose --no-document"
if [ -n "${GEM_HOME}" ]; then
GEM_BIN_DIR=${GEM_HOME}/bin/
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.