You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

generate.sh 230B

1234567891011
  1. #!/bin/sh
  2. #
  3. # Update generated Java code from protocol buffer descriptions.
  4. set -e
  5. for proto in resources/org/eclipse/jgit/storage/dht/*.proto
  6. do
  7. echo >&2 Generating from $proto
  8. protoc -Iresources --java_out=src $proto
  9. done