]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
eapol_test-build.sh log output should be to stderr
authorNick Porter <nick@portercomputing.co.uk>
Mon, 9 Jan 2023 13:36:42 +0000 (13:36 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Mon, 9 Jan 2023 13:36:42 +0000 (13:36 +0000)
stdout is where the path to the final binary is output.

scripts/ci/eapol_test-build.sh

index f1cc309e29d344b2bfe7c154d52113ae64ca194b..2018bd7b2903d6bf9b80258501e744bef608936d 100755 (executable)
@@ -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