Moving gen-go out of vendored folder into it's own package so that it can be imported by other projects

This commit is contained in:
Renan DelValle 2016-09-19 13:15:44 -04:00
parent 494f733f4e
commit 4408aefaad
9 changed files with 32167 additions and 2 deletions

View file

@ -6,6 +6,6 @@ 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 and placing them in the vendor folder...";
thrift -o vendor/ -r -gen go:package=apache.aurora auroraAPI.thrift;
echo "Generating bindings...";
thrift -o ./ -r -gen go:package=apache.aurora auroraAPI.thrift;
echo "Done";