summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.generated.storage.dht.proto/generate.sh
blob: f80989503fcd1b7e974439b3542e4f7c9a47ccb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# Update generated Java code from protocol buffer descriptions.

set -e

for proto in resources/org/eclipse/jgit/storage/dht/*.proto
do
  echo >&2 Generating from $proto
  protoc -Iresources --java_out=src $proto
done