From dbb261e9d535cfd10bd134929edf5059f08ec4a8 Mon Sep 17 00:00:00 2001 From: Shubham Mittal Date: Mon, 3 Feb 2025 14:26:02 -0800 Subject: [PATCH] minor syntax issue --- tests/ci/integration/run_openssh_integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/integration/run_openssh_integration.sh b/tests/ci/integration/run_openssh_integration.sh index 20c8ac7008..afbd4c01e8 100755 --- a/tests/ci/integration/run_openssh_integration.sh +++ b/tests/ci/integration/run_openssh_integration.sh @@ -77,7 +77,7 @@ function apply_openssh_patch() { pushd "${OPENSSH_WORKSPACE_FOLDER}" local patch_dir="${SRC_ROOT}/tests/ci/integration/openssh_patch/" for patchfile in $(find -L ${patch_dir} -type f -name '*.patch'); do - echo "Apply patch ${patchfile}..." + echo "Apply patch $patchfile..." patch -p1 --quiet -i "$patchfile" done }