From 107cfe5dafbaf4320471e5cb45207cc70e4db2b4 Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Wed, 17 Jun 2020 10:26:47 +0200 Subject: [PATCH] Fixed comparison for SVN info parameter Based on @arturmartins comment in #1615 - thanks! --- test/fixtures/svn/working/svn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/svn/working/svn b/test/fixtures/svn/working/svn index 5d72d7cd..910d01e7 100755 --- a/test/fixtures/svn/working/svn +++ b/test/fixtures/svn/working/svn @@ -3,7 +3,7 @@ # If the info command is called # AND the parent folder contains the .svn folder # THEN return the current path, similar to what `svn info` does -if [[ "$1" = "info" ]] && [[ -d "../.svn" ]]; then +if [[ "$1" == "info" ]] && [[ -d "../.svn" ]]; then echo "$PWD" fi