From 28e0b83313fb30f40e0b56306d2c67c8df6b2b12 Mon Sep 17 00:00:00 2001 From: Sergii Tkachenko Date: Fri, 26 Apr 2024 17:30:25 -0700 Subject: [PATCH] Use prefixed version of run_ignore_exit_code --- buildscripts/kokoro/psm-interop-build-java.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildscripts/kokoro/psm-interop-build-java.sh b/buildscripts/kokoro/psm-interop-build-java.sh index 57d92196e2d..837b395a8bb 100755 --- a/buildscripts/kokoro/psm-interop-build-java.sh +++ b/buildscripts/kokoro/psm-interop-build-java.sh @@ -38,8 +38,8 @@ _build_java_test_app() { set +x psm::tools::log "Test-run grpc-java PSM interop binaries" - run_ignore_exit_code "${SRC_DIR}/${BUILD_APP_PATH}/bin/xds-test-client" --help - run_ignore_exit_code "${SRC_DIR}/${BUILD_APP_PATH}/bin/xds-test-server" --help + psm::tools::run_ignore_exit_code "${SRC_DIR}/${BUILD_APP_PATH}/bin/xds-test-client" --help + psm::tools::run_ignore_exit_code "${SRC_DIR}/${BUILD_APP_PATH}/bin/xds-test-server" --help } #######################################