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:
Takashi Kajinami 2022-12-05 18:34:09 +09:00
parent 42bfb2cdaf
commit dc3a5b07b6
1 changed files with 1 additions and 1 deletions

View File

@ -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/