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 c69c643 commit 8f28619Copy full SHA for 8f28619
.kokoro/psm_interop_kokoro_lib.sh
@@ -838,8 +838,11 @@ test_driver_compile_protos() {
838
--grpc_python_out="${TEST_DRIVER_FULL_DIR}" \
839
"${protos[@]}"
840
local protos_out_dir="${TEST_DRIVER_FULL_DIR}/${TEST_DRIVER_PROTOS_PATH}"
841
- psm::tools::log "Generated files ${protos_out_dir}:"
842
- find "${protos_out_dir}" -type f -exec md5sum {} \;
+
+ if command -v sha256sum &> /dev/null; then
843
+ psm::tools::log "Generated files ${protos_out_dir}:"
844
+ find "${protos_out_dir}" -type f -exec sha256sum {} \;
845
+ fi
846
}
847
848
#######################################
0 commit comments