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 03a9172 commit b252619Copy full SHA for b252619
.github/workflows/protobuf.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Check Build Setup
26
run: |
27
( result=0 ; for f in *.proto ; do grep -wq "$f" CMakeLists.txt || { echo "Missing $f in CMakeLists.txt" && let "result++"; } ; done ; exit $result )
28
- ( result=0 ; for f in *.proto ; do grep -q "'$f'" setup.py || { echo "Missing $f in setup.py" && let "result++"; } ; done ; exit $result )
+ ( result=0 ; for f in *.proto ; do grep -q "'"'$f'"'" setup.py || { echo "Missing $f in setup.py" && let "result++"; } ; done ; exit $result )
29
30
- name: Setup Python
31
uses: actions/setup-python@v5
0 commit comments