Browse Source

Fixed svn support on `sde ci` to only commit what was requested

karasz/new-early
Alejandro Mery 17 years ago
parent
commit
5d71c95b32
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/sde-commit

+ 1
- 1
bin/sde-commit

@ -190,7 +190,7 @@ if [ -s $tmpfile.diff -o -s $tmpfile.status ]; then
git commit --file $logfile && rm "$logfile" ; quit=1
elif [ -d ".svn" ]; then
# svn commit
svn commit --file $logfile && rm "$logfile" ; quit=1
svn commit --file $logfile -- $locations && rm "$logfile" ; quit=1
fi ;;
d*) ${PAGER:-less -R} $tmpfile.diff ;;
s*) cat $tmpfile.status ;;

Loading…
Cancel
Save