-some code cleanup
[oweals/gnunet.git] / contrib / submit
1 #!/bin/sh
2 echo "Are you sure you want to commit changes to these files?"
3 svn status
4 read dummy
5 svn diff
6 echo "Are you sure you want to commit the changes above (CTRL-C to abort)"
7 read dummy
8 if test 0 != $#
9 then
10   svn commit -m "$*"
11 else
12   svn commit 
13 fi