diff --git a/README.markdown b/README.markdown index 93c6703..5033e43 100644 --- a/README.markdown +++ b/README.markdown @@ -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" $ ``` diff --git a/install.sh b/install.sh index 9504927..a6099de 100755 --- a/install.sh +++ b/install.sh @@ -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