From ddec2ad12fdbc77ebc07d36b7bf1ef0b65d3cc93 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 12 Nov 2013 09:52:56 -0800 Subject: [PATCH] Ticket #456: Add missing quotes to guacctl script. --- bin/guacctl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/guacctl b/bin/guacctl index c6210405..bfb6d679 100755 --- a/bin/guacctl +++ b/bin/guacctl @@ -99,7 +99,7 @@ download_files() { for FILENAME in "$@"; do if [ -e "$FILENAME" ]; then - send_download_file `fullpath $FILENAME` + send_download_file "`fullpath "$FILENAME"`" else error "$FILENAME: File does not exist." fi @@ -123,7 +123,7 @@ set_directory() { FILENAME="$1" if [ -d "$FILENAME" ]; then - send_set_directory `fullpath "$FILENAME"` + send_set_directory "`fullpath "$FILENAME"`" else error "$FILENAME: File does not exist or is not a directory." fi