# OS SPECIFIC SETTINGS
-if [[ $(uname) == Linux ]]; then
+local uname=$(uname)
+
+if [[ $uname == Linux ]]; then
# Settings when creating Debian packages.
DEBEMAIL=simon@ruderich.org
export DEBEMAIL
DEBFULLNAME="Simon Ruderich"
export DEBFULLNAME
-elif [[ $(uname) == Darwin ]]; then # Mac OS X
+elif [[ $uname == Darwin ]]; then # Mac OS X
# Store the current clipboard in CLIPBOARD before every command so it can
# be used in commands.
os_darwin_preexec() {