From ca7a5c3cf952adb34d47c581251ec0cf2c734b3d Mon Sep 17 00:00:00 2001 From: Samruddhi Khandale Date: Wed, 22 Jun 2022 17:33:29 +0000 Subject: fix sudo_if --- src/ruby/install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/ruby') diff --git a/src/ruby/install.sh b/src/ruby/install.sh index 12f5916..6b6db3a 100644 --- a/src/ruby/install.sh +++ b/src/ruby/install.sh @@ -230,17 +230,21 @@ else usermod -aG rvm ${USERNAME} chown -R "${USERNAME}:rvm" "${RVM_DIR}/" chmod -R g+r+w "${RVM_DIR}/" - su ${USERNAME} -c curl -sSL https://get.rvm.io | bash -s stable --ignore-dotfiles ${RVM_INSTALL_ARGS} --with-default-gems="${DEFAULT_GEMS}" 2>&1 + + su ${USERNAME} -c "$(cat << EOF + curl -sSL https://get.rvm.io | bash -s stable --ignore-dotfiles ${RVM_INSTALL_ARGS} --with-default-gems="${DEFAULT_GEMS}" 2>&1 source ${RVM_DIR}/scripts/rvm rvm fix-permissions system rm -rf ${GNUPGHOME} +EOF +)" 2>&1 fi if [ "${INSTALL_RUBY_TOOLS}" = "true" ]; then # Non-root user may not have "gem" in path when script is run and no ruby version # is installed by rvm, so handle this by using root's default gem in this case ROOT_GEM="$(which gem || echo "")" - ${ROOT_GEM} install ${DEFAULT_GEMS} + su ${USERNAME} -c ${ROOT_GEM} install ${DEFAULT_GEMS} fi # VS Code server usually first in the path, so silence annoying rvm warning (that does not apply) and then source it -- cgit v1.2.3