summaryrefslogtreecommitdiffstats
path: root/scripts/svnaddcurrentdir
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/svnaddcurrentdir')
-rwxr-xr-xscripts/svnaddcurrentdir2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/svnaddcurrentdir b/scripts/svnaddcurrentdir
index 2474bb01..53eb384a 100755
--- a/scripts/svnaddcurrentdir
+++ b/scripts/svnaddcurrentdir
@@ -17,7 +17,7 @@ ask_for_adding() {
echo
read -p "Add file $file to SVN ? (y/n) " answer rest
#if [ "$answer" != "y" ]; then echo $file; fi
-if [ "$answer" == "y" ]; then svn add $file; fi
+if [ "$answer" = "y" ]; then svn add $file; fi
}