diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 } |