[#361] Do not remove stable marshal test file after API recompile

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-12-02 15:56:45 +03:00 committed by Alex Vanin
parent c35dff758d
commit 4b67b56c4b

View file

@ -30,7 +30,7 @@ cd "$API_GO_PATH" || exit 1
make protoc
# REMOVE PROTO DEFINITIONS
ARGS=$(find ./$prefix -name '*.proto' -not -path './vendor/*')
ARGS=$(find ./$prefix -name '*.proto' -not -path './vendor/*' -not -path './util/*')
for file in $ARGS; do
rm "$file"
done