Fix incorrect Windows path in themes.md [skip ci] (#7525)
Merge pull request 7525
This commit is contained in:
parent
2f94540f89
commit
b975608cbb
|
@ -50,8 +50,16 @@ To locate a theme's files on your computer:
|
||||||
```sh
|
```sh
|
||||||
# On MacOS
|
# On MacOS
|
||||||
open $(bundle show minima)
|
open $(bundle show minima)
|
||||||
|
|
||||||
# On Windows
|
# 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
|
# On Linux
|
||||||
xdg-open $(bundle show minima)
|
xdg-open $(bundle show minima)
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue