From e414c6818c857df922d5b5dc58d39e2470e503a5 Mon Sep 17 00:00:00 2001 From: Peter Yates Date: Thu, 9 Apr 2020 15:27:27 +0100 Subject: [PATCH] Fix install script quotes --- README.markdown | 4 ++-- install.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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