From: Nick Porter Date: Mon, 9 Jan 2023 13:36:42 +0000 (+0000) Subject: eapol_test-build.sh log output should be to stderr X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d65bce0b845872a7be1036cd3a59e4231d81aa2;p=thirdparty%2Ffreeradius-server.git eapol_test-build.sh log output should be to stderr stdout is where the path to the final binary is output. --- diff --git a/scripts/ci/eapol_test-build.sh b/scripts/ci/eapol_test-build.sh index f1cc309e29d..2018bd7b290 100755 --- a/scripts/ci/eapol_test-build.sh +++ b/scripts/ci/eapol_test-build.sh @@ -85,7 +85,7 @@ fi # Shallow clone so we don't use all Jouni's bandwidth if ! [ -e "${HOSTAPD_DIR}/.git" ]; then - echo "GIT CLONING ${HOSTAPD_GIT_TAG} FROM ${HOSTAPD_REPO}" + echo "GIT CLONING ${HOSTAPD_GIT_TAG} FROM ${HOSTAPD_REPO}" 1>&2 if ! git clone --branch "${HOSTAPD_GIT_TAG}" --depth 1 "${HOSTAPD_REPO}" 1>&2 "${TMP_BUILD_DIR}/hostapd"; then echo "Failed cloning hostapd" 1>&2 if [ -z "${BUILD_DIR}" ]; then rm -rf "$TMP_BUILD_DIR"; fi