From b975608cbbe556327c66684e6739bbce8a9cb08a Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Wed, 20 Feb 2019 13:51:37 +0530 Subject: [PATCH] Fix incorrect Windows path in themes.md [skip ci] (#7525) Merge pull request 7525 --- docs/_docs/themes.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/_docs/themes.md b/docs/_docs/themes.md index 174579a8..cb756334 100644 --- a/docs/_docs/themes.md +++ b/docs/_docs/themes.md @@ -50,8 +50,16 @@ To locate a theme's files on your computer: ```sh # On MacOS open $(bundle show minima) + # On Windows - explorer /usr/local/lib/ruby/gems/2.3.0/gems/minima-2.1.0 + # First get the gem's installation path: + # + # bundle show minima + # => C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/minima-2.1.0 + # + # then invoke explorer with above path, substituting `/` with `\` + explorer C:\Ruby24-x64\lib\ruby\gems\2.4.0\gems\minima-2.1.0 + # On Linux xdg-open $(bundle show minima) ```