From 77a5c7d1b9f199497a3e23766d38436f46b8f14a Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 19 Aug 2014 00:18:14 +0200 Subject: [PATCH] zsh/env: remove unnecessary quotes --- zsh/env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/env b/zsh/env index 61ea779..4a4a6e0 100644 --- a/zsh/env +++ b/zsh/env @@ -1,6 +1,6 @@ # Zsh configuration file for environment related options. -# Copyright (C) 2011-2013 Simon Ruderich +# Copyright (C) 2011-2014 Simon Ruderich # # This file is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ typeset -U path PATH # Useful in combination with the "p" alias. Taken from Debian's default bash # files. Thanks. if [[ -x /usr/bin/lesspipe ]]; then - eval "$(SHELL=/bin/sh lesspipe)" || echo "Broken lesspipe!" >&2 + eval $(SHELL=/bin/sh lesspipe) || echo 'Broken lesspipe!' >&2 fi -- 2.44.1