From: Simon Ruderich Date: Mon, 18 Aug 2014 22:18:14 +0000 (+0200) Subject: zsh/env: remove unnecessary quotes X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=77a5c7d1b9f199497a3e23766d38436f46b8f14a zsh/env: remove unnecessary quotes --- 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