Fix install script quotes

This commit is contained in:
Peter Yates 2020-04-09 15:27:27 +01:00
parent da2f061feb
commit e414c6818c
No known key found for this signature in database
GPG Key ID: F5A9E8AD2A5C54A1
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