summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2008-08-29 08:12:27 +0000
committerUlrich Müller <ulm@gentoo.org>2008-08-29 08:12:27 +0000
commit05ee1247fc89d0d175a6090f1c13ef04e6d10271 (patch)
tree2c63e4afbf7b3f841d29c24ec27a731b90d61529
parentRename -a arguments to shorter names. (diff)
downloademacs-tools-05ee1247fc89d0d175a6090f1c13ef04e6d10271.tar.gz
emacs-tools-05ee1247fc89d0d175a6090f1c13ef04e6d10271.tar.bz2
emacs-tools-05ee1247fc89d0d175a6090f1c13ef04e6d10271.zip
Add some quotation marks.
svn path=/emacs-updater/; revision=1098
-rwxr-xr-xemacs-updater6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs-updater b/emacs-updater
index 71ce9c4..0f3ee5a 100755
--- a/emacs-updater
+++ b/emacs-updater
@@ -111,17 +111,17 @@ fi
# Some type of output can be prettified and capsulated in functions
message() {
- local OUTPUT=$@
+ local OUTPUT="$@"
echo "${GREEN}*${NORMAL}${BOLD} ${OUTPUT}${NORMAL}"
}
warning() {
- local OUTPUT=$@
+ local OUTPUT="$@"
echo "${YELLOW}*${NORMAL}${BOLD} ${OUTPUT}${NORMAL}"
}
failure() {
- local OUTPUT=$@
+ local OUTPUT="$@"
echo "${RED}*${NORMAL}${BOLD} ${OUTPUT}${NORMAL}"
}