From 72bc135b5fe734b4454bb86cdee0b0a23c7699ed Mon Sep 17 00:00:00 2001 From: Ivan Storck Date: Fri, 6 Mar 2020 12:41:07 -0800 Subject: [PATCH] Fix minor deprecation issue (#2425) with bundler show vs now info. Just to avoid warning for users --- docs/_docs/06-overriding-theme-defaults.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/06-overriding-theme-defaults.md b/docs/_docs/06-overriding-theme-defaults.md index 5ebca2ea295f..2999fbc8e077 100644 --- a/docs/_docs/06-overriding-theme-defaults.md +++ b/docs/_docs/06-overriding-theme-defaults.md @@ -9,7 +9,7 @@ When installing the theme as a Ruby Gem its layouts, includes, stylesheets, and Each of these files can be modified, but you'll need to copy the default version into your project first. For example, if you wanted to modify the default [`single` layout](https://github.com/mmistakes/minimal-mistakes/blob/master/_layouts/single.html), you'd start by copying it to `_layouts/single.html`. -**ProTip**: To locate theme files, run `bundle show minimal-mistakes-jekyll`. Then copy the files you want to override from the returned path, to the appropriate folder in your project. +**ProTip**: To locate theme files, run `bundle info minimal-mistakes-jekyll`. Then copy the files you want to override from the returned path, to the appropriate folder in your project. {: .notice--info} Jekyll will use the files in your project first before falling back to the default versions of the theme. It exhibits this behavior with files in the following folders: @@ -24,4 +24,4 @@ Jekyll will use the files in your project first before falling back to the defau Additionally, from `v4.5.0` the theme-gem will also exhibit above behavior for `/_data` via a plugin. Consequently, the data files for UI Text and Navigation are also bundled within the theme-gem. -For more information on customizing the theme's [stylesheets]({{ "/docs/stylesheets/" | relative_url }}) and [JavaScript]({{ "/docs/javascript/" | relative_url }}), see the appropriate pages. \ No newline at end of file +For more information on customizing the theme's [stylesheets]({{ "/docs/stylesheets/" | relative_url }}) and [JavaScript]({{ "/docs/javascript/" | relative_url }}), see the appropriate pages.