From 98988cfcf1f0792e38d29b2c8452c5e1a6cc60c3 Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Tue, 19 Feb 2019 14:57:55 +1300 Subject: [PATCH] DOCS Escape \*nix in upgrading guide --- docs/en/03_Upgrading/01_Upgrading_project.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/03_Upgrading/01_Upgrading_project.md b/docs/en/03_Upgrading/01_Upgrading_project.md index b67700aa0..6e3489534 100644 --- a/docs/en/03_Upgrading/01_Upgrading_project.md +++ b/docs/en/03_Upgrading/01_Upgrading_project.md @@ -123,12 +123,12 @@ To install the upgrader globally run this command. composer global require silverstripe/upgrader ``` -Add your global composer bin directory to your path. On *nix system, this directory is normally located at `$HOME/.composer/vendor/bin`. On Windows system, this directory is normally located at `C:\Users\\AppData\Roaming\Composer\vendor\bin`. You can find the exact location by running this command: +Add your global composer bin directory to your path. On \*nix system, this directory is normally located at `$HOME/.composer/vendor/bin`. On Windows system, this directory is normally located at `C:\Users\\AppData\Roaming\Composer\vendor\bin`. You can find the exact location by running this command: ```bash composer global config bin-dir ``` -On *nix system, the following command will add your global composer bin directory to your path if `bash` is your default shell environment: +On \*nix system, the following command will add your global composer bin directory to your path if `bash` is your default shell environment: ```bash echo 'export PATH=$PATH:~/.composer/vendor/bin/' >> ~/.bash_profile source ~/.bash_profile