* Removing go.sum file as it's no longer required as of go1.13. * Removing uncessary client command. * Bumping up thrift version to v0.13.0
11 lines
290 B
Bash
Executable file
11 lines
290 B
Bash
Executable file
#! /bin/bash
|
|
|
|
THRIFT_VER=0.13.0
|
|
|
|
if [[ $(thrift -version | grep -e $THRIFT_VER -c) -ne 1 ]]; then
|
|
echo "Warning: This wrapper has only been tested with version" $THRIFT_VER;
|
|
fi
|
|
|
|
echo "Generating bindings...";
|
|
thrift -o ./ -r -gen go:package=apache.aurora auroraAPI.thrift;
|
|
echo "Done";
|