From d84926cdaa7a5afffd620475f7deb13bbe3c2311 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 16 Jun 2016 18:22:38 +0300 Subject: Fix test.sh not to collapse several consecutive spaces into the single one in repository locations --- tests/test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test.sh') diff --git a/tests/test.sh b/tests/test.sh index 9caafb1..369e1d4 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -206,13 +206,13 @@ function edit () function location () { if [ "$remote" = "y" ]; then - echo $rep/$1 + echo "$rep/$1" elif [ "$msys" = "y" ]; then # Convert Windows path like c:/abc/xyz to the c:\abc\xyz canonical form. # - echo `pwd -W`/$rep/$1 | sed 's%/%\\%g' + echo "`pwd -W`/$rep/$1" | sed 's%/%\\%g' else - echo `pwd`/$rep/$1 + echo "`pwd`/$rep/$1" fi } -- cgit v1.1