diff options
Diffstat (limited to 'scripts/cvsaddcurrentdir')
-rwxr-xr-x | scripts/cvsaddcurrentdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cvsaddcurrentdir b/scripts/cvsaddcurrentdir index 56185f27..669dcc8b 100755 --- a/scripts/cvsaddcurrentdir +++ b/scripts/cvsaddcurrentdir @@ -17,7 +17,7 @@ ask_for_adding() { echo read -p "Add file $file to cvs ? (y/n) " answer rest #if [ "$answer" != "y" ]; then echo $file; fi -if [ "$answer" == "y" ]; then cvs add $file; fi +if [ "$answer" = "y" ]; then cvs add $file; fi } |