ultimate-jekyll-manager 0.0.211 → 0.0.212
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/setup.js +2 -1
- package/package.json +1 -1
package/dist/commands/setup.js
CHANGED
|
@@ -215,7 +215,8 @@ async function ensureBundlerVersion() {
|
|
|
215
215
|
|
|
216
216
|
// Check if we need to update
|
|
217
217
|
if (!isUpToDate) {
|
|
218
|
-
|
|
218
|
+
logger.log(`Bundler is out-of-date. Installing version ${requiredVersion}...`);
|
|
219
|
+
await execute(`gem install bundler -v ${requiredVersion}`, { log: true });
|
|
219
220
|
}
|
|
220
221
|
}
|
|
221
222
|
|