Changes to gnats/send-pr/send-pr.sh

Yngve Svendsen <[email protected]> Thu, 24 Oct 2002 17:35:59 -0400
Newsgroups gmane.comp.bug-tracking.gnats.patches
Message-ID <[email protected]>
Index: gnats/send-pr/send-pr.sh
diff -c gnats/send-pr/send-pr.sh:1.21 gnats/send-pr/send-pr.sh:1.22
*** gnats/send-pr/send-pr.sh:1.21	Thu Oct 24 17:11:46 2002
--- gnats/send-pr/send-pr.sh	Thu Oct 24 17:35:59 2002
***************
*** 209,215 ****
  USAGE="Usage: $COMMAND [OPTION]...
  
    -b --batch              run without printing most messages
-   -c --cc LINE            put LINE to the CC header
    -d --database DATABASE  submit PR to DATABASE
    -f --file FILE          read the PR template from FILE (\`-' for stdin)
    -p --print              just print the template and exit
--- 209,214 ----
***************
*** 221,227 ****
  "
  REMOVE=
  BATCH=
- CC=
  DEFAULT_SEVERITY=
  
  if [ "$SYSTEM" != "" ]
--- 220,225 ----
***************
*** 241,249 ****
  	fi
  	;;
      -b | --batch) BATCH=true ;;
-     -c | --cc) if [ $# -eq 1 ]; then echo "$USAGE"; exit 1; fi
- 	shift ; CC="$1"
- 	;;
      -d | --database) if [ $# -eq 1 ]; then echo "$USAGE"; exit 1; fi
          shift; GNATSDB="$1"; export GNATSDB
      ;;
--- 239,244 ----
***************
*** 355,361 ****
  Subject: 
  From: $FROM
  Reply-To: $REPLYTO
- Cc: $CC
  X-send-pr-version: $VERSION
  
  
--- 350,355 ----