Skip to content

Commit

Permalink
Fix missing dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
dlj-NaN committed May 12, 2022
1 parent 91e40ef commit 25df3da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Makefile.am
Expand Up @@ -993,6 +993,7 @@ php_EXTRA_DIST= \

# Note: please keep this in sync with the python_dist_files rule in BUILD.bazel.
python_EXTRA_DIST= \
python/BUILD.bazel \
python/MANIFEST.in \
python/google/__init__.py \
python/google/protobuf/__init__.py \
Expand Down Expand Up @@ -1107,6 +1108,7 @@ python_EXTRA_DIST= \
python/google/protobuf/text_format.py \
python/google/protobuf/unknown_fields.py \
python/google/protobuf/util/__init__.py \
python/internal.bzl \
python/release.sh \
python/mox.py \
python/setup.cfg \
Expand Down
2 changes: 1 addition & 1 deletion kokoro/common/check_missing_dist_files.sh
Expand Up @@ -50,6 +50,6 @@ fi
for (( i=0 ; i < ${#MISSING_FILES[@]} ; i++ )); do
echo " ${MISSING_FILES[i]}"
done
echo -e "\nAdd them to the `pkg_files` rule in corresponding BUILD.bazel.\n"
echo -e "\nAdd them to the 'pkg_files' rule in corresponding BUILD.bazel.\n"
) >&2
exit 1
2 changes: 2 additions & 0 deletions python/BUILD.bazel
Expand Up @@ -332,11 +332,13 @@ pkg_files(
"google/protobuf/pyext/*.cc",
"google/protobuf/pyext/*.h",
]) + [
"BUILD.bazel",
"MANIFEST.in",
"README.md",
"google/protobuf/proto_api.h",
"google/protobuf/pyext/README",
"google/protobuf/python_protobuf.h",
"internal.bzl",
"mox.py",
"release.sh",
"setup.cfg",
Expand Down

0 comments on commit 25df3da

Please sign in to comment.