From dc3a5b07b6dcc51b1964308a091e719d6b56a814 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 5 Dec 2022 18:34:09 +0900 Subject: [PATCH] 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 --- install_modules.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_modules.sh b/install_modules.sh index 4b2627871..774417cb9 100755 --- a/install_modules.sh +++ b/install_modules.sh @@ -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/