mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
17 lines
481 B
Bash
Executable File
17 lines
481 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir=$(pwd)
|
|
# Relative paths are different when building locally versus on CI
|
|
#if [[ "$dir" == *"package"* ]]; then
|
|
# SRC_DIR=$dir/../../../../../../src
|
|
# DEST_DIR=$dir/../src/main/java/
|
|
#else
|
|
SRC_DIR=/hirs/HIRS/src/
|
|
DEST_DIR=/hirs/HIRS/src/main/java #/hirs/attestationca/portal
|
|
#fi
|
|
|
|
XSD_FILE=$SRC_DIR/main/resources/swid_schema.xsd
|
|
|
|
if [ ! -d "$DEST_DIR/hirs/attestationca/utils/xjc" ]; then
|
|
xjc -p hirs.attestationca.utils.xjc $XSD_FILE -d $DEST_DIR -quiet
|
|
fi |