Skip to content

Commit

Permalink
md5sum without shell globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiitk committed Apr 26, 2024
1 parent 1afd454 commit ce43c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .kokoro/psm_interop_kokoro_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ test_driver_compile_protos() {
"${protos[@]}"
local protos_out_dir="${TEST_DRIVER_FULL_DIR}/${TEST_DRIVER_PROTOS_PATH}"
psm::tools::log "Generated files ${protos_out_dir}:"
md5sum "${protos_out_dir}/*"
find "${protos_out_dir}" -type f -exec md5sum {} \;
}

#######################################
Expand Down Expand Up @@ -965,7 +965,7 @@ kokoro_get_testing_version() {
kokoro_setup_test_driver() {
# Unset noisy verbose mode often set in the parent scripts.
set +x

psm::tools::log "Starting Kokoro provisioning"

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

0 comments on commit ce43c7d

Please sign in to comment.