Fix incorrect Windows path in themes.md [skip ci] (#7525)

Merge pull request 7525
This commit is contained in:
Ashwin Maroli 2019-02-20 13:51:37 +05:30 committed by jekyllbot
parent 2f94540f89
commit b975608cbb
1 changed files with 9 additions and 1 deletions

View File

@ -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)
```