From 56996937ab4df062428ce1876a1e54a65e08e37f Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sun, 5 Apr 2020 14:16:21 +0200 Subject: [PATCH] Clarify messages about the shipped Bundler being reused --- dist/index.js | 4 ++-- index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 37c53c5..beb3989 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1118,9 +1118,9 @@ async function installBundler(platform, rubyPrefix, engine, rubyVersion) { } if (engine === 'ruby' && isHeadVersion(rubyVersion) && bundlerVersion === '2') { - console.log(`Using the Bundler version shipped with ${engine}-${rubyVersion}`) + console.log(`Using Bundler 2 shipped with ${engine}-${rubyVersion}`) } else if (engine === 'truffleruby' && bundlerVersion === '1') { - console.log(`Using the Bundler version shipped with ${engine}`) + console.log(`Using Bundler 1 shipped with ${engine}`) } else if (engine === 'rubinius') { console.log(`Rubinius only supports the version of Bundler shipped with it`) } else { diff --git a/index.js b/index.js index 145985b..a3674cb 100644 --- a/index.js +++ b/index.js @@ -160,9 +160,9 @@ async function installBundler(platform, rubyPrefix, engine, rubyVersion) { } if (engine === 'ruby' && isHeadVersion(rubyVersion) && bundlerVersion === '2') { - console.log(`Using the Bundler version shipped with ${engine}-${rubyVersion}`) + console.log(`Using Bundler 2 shipped with ${engine}-${rubyVersion}`) } else if (engine === 'truffleruby' && bundlerVersion === '1') { - console.log(`Using the Bundler version shipped with ${engine}`) + console.log(`Using Bundler 1 shipped with ${engine}`) } else if (engine === 'rubinius') { console.log(`Rubinius only supports the version of Bundler shipped with it`) } else {