We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4424a2e commit 11098b0Copy full SHA for 11098b0
compile_proto.sh
@@ -3,18 +3,12 @@
3
# Terminate on errors
4
set -e
5
6
-
7
printf "Synchronising submodules... "
8
-git submodule sync --recursive >> /dev/null
9
-git submodule update --recursive --remote --init >> /dev/null
+git submodule sync --recursive >>/dev/null
+git submodule update --recursive --remote --init >>/dev/null
10
printf "DONE\n\n"
11
12
server_file="./protos/fishjam/server_notifications.proto"
13
printf "Compiling: file $server_file\n"
14
protoc -I . --python_betterproto_out=./fishjam/events/_protos $server_file
15
printf "\tDONE\n"
16
17
-peer_file="./protos/fishjam/peer_notifications.proto"
18
-printf "Compiling: file $peer_file\n"
19
-protoc -I . --python_betterproto_out=./tests/support/protos $peer_file
20
-printf "\tDONE\n"
0 commit comments