mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 12:46:30 +00:00
17 lines
591 B
Bash
Executable File
17 lines
591 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to generate protobuf Java code. Called by gradle to compile the
|
|
# protobuf spec file to Java source. Generates the file
|
|
# hirs/attestationca/configuration/provisionerTpm2/ProvisionerTpm2.java.
|
|
|
|
dir=$(pwd)
|
|
# Relative paths are different when building locally versus on CI
|
|
if [[ "$dir" == *"package"* ]]; then
|
|
SRC_DIR=$dir/../../../../../../HIRS_Provisioner.NET/hirs/Resources
|
|
DEST_DIR=$dir/../src/main/java
|
|
else
|
|
SRC_DIR=../../HIRS_Provisioner.NET/hirs/Resources
|
|
DEST_DIR=../src/main/java
|
|
fi
|
|
protoc -I=$SRC_DIR --java_out=$DEST_DIR $SRC_DIR/ProvisionerTpm2.proto
|