diff options
| -rwxr-xr-x | format-patch.sh | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/format-patch.sh b/format-patch.sh index 86737042f..12d05a03d 100755 --- a/format-patch.sh +++ b/format-patch.sh @@ -51,9 +51,9 @@ function main()      }      if [ -z "$bug" ]; then -        git format-patch "$@"; +        git format-patch -s "$@";      else -        git format-patch --subject-prefix="PATCH BUG:$bug" "$@"; +        git format-patch -s --subject-prefix="PATCH BUG:$bug" "$@";      fi  }  | 
