Skip to content

Commit ce43c7d

Browse files
committed
md5sum without shell globbing
1 parent 1afd454 commit ce43c7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.kokoro/psm_interop_kokoro_lib.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ test_driver_compile_protos() {
814814
"${protos[@]}"
815815
local protos_out_dir="${TEST_DRIVER_FULL_DIR}/${TEST_DRIVER_PROTOS_PATH}"
816816
psm::tools::log "Generated files ${protos_out_dir}:"
817-
md5sum "${protos_out_dir}/*"
817+
find "${protos_out_dir}" -type f -exec md5sum {} \;
818818
}
819819

820820
#######################################
@@ -965,7 +965,7 @@ kokoro_get_testing_version() {
965965
kokoro_setup_test_driver() {
966966
# Unset noisy verbose mode often set in the parent scripts.
967967
set +x
968-
968+
969969
psm::tools::log "Starting Kokoro provisioning"
970970

971971
local src_repository_name="${1:?Usage kokoro_setup_test_driver GITHUB_REPOSITORY_NAME}"

0 commit comments

Comments
 (0)