mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
18 lines
507 B
Bash
Executable File
18 lines
507 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
VEILID_SERVER=$SCRIPTDIR/../target/debug/veilid-server
|
|
|
|
# Ensure executable exists
|
|
if [ ! -f "$VEILID_SERVER" ]; then
|
|
echo "$VEILID_SERVER does not exist. Build with cargo build."
|
|
exit 1
|
|
fi
|
|
|
|
# Produce schema from veilid-server
|
|
$VEILID_SERVER --emit-schema Request > $SCRIPTDIR/veilid/schema/Request.json
|
|
$VEILID_SERVER --emit-schema RecvMessage > $SCRIPTDIR/veilid/schema/RecvMessage.json
|
|
|
|
|