Merge pull request #154 from peteryates/master

Fix install script quotes
This commit is contained in:
Ryan Delaney 2020-04-09 08:37:47 -07:00 committed by GitHub
commit 6fb72eecdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -44,10 +44,10 @@ $ ( cd /tmp/LS_COLORS && sh install.sh )
To enable the colors, add the following line to your shell's start-up script:
For Bourne shell (e.g. ~/.bashrc or ~/.zshrc):
. ~/.local/share/lscolors.sh"
. "~/.local/share/lscolors.sh"
For C shell (e.g. ~/.cshrc):
. ~/.local/share/lscolors.csh"
. "~/.local/share/lscolors.csh"
$
```

View File

@ -9,10 +9,10 @@ if dircolors -b LS_COLORS > lscolors.sh && dircolors -c LS_COLORS > lscolors.csh
To enable the colors, add the following line to your shell's start-up script:
For Bourne shell (e.g. ~/.bashrc or ~/.zshrc):
. $lscolors_data_dir/lscolors.sh"
. "$lscolors_data_dir/lscolors.sh"
For C shell (e.g. ~/.cshrc):
. $lscolors_data_dir/lscolors.csh
. "$lscolors_data_dir/lscolors.csh"
EOF
fi