From 24559be19dd17964d69c0607b885f76840825526 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sun, 20 May 2012 17:47:07 -0400 Subject: [PATCH] Add quotes around file names --- modules/command-not-found/init.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/command-not-found/init.zsh b/modules/command-not-found/init.zsh index d4a1e85..38f3626 100644 --- a/modules/command-not-found/init.zsh +++ b/modules/command-not-found/init.zsh @@ -5,7 +5,7 @@ # Joseph Jon Booker # -if [[ -s /etc/zsh_command_not_found ]]; then - source /etc/zsh_command_not_found +if [[ -s '/etc/zsh_command_not_found' ]]; then + source '/etc/zsh_command_not_found' fi