From edb6e6b444e34bfb4e828a25c3a2bd2b0fd433ab Mon Sep 17 00:00:00 2001 From: Colin Hutchinson Date: Thu, 8 Dec 2022 05:21:04 +0000 Subject: [PATCH] chore(docs): just some stdout echo's for readability --- build.sh | 2 ++ test.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/build.sh b/build.sh index ee7e333..73f6524 100755 --- a/build.sh +++ b/build.sh @@ -10,6 +10,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) export $(grep -v '^#' $SCRIPT_DIR/.env | xargs) function main() { + echo '--- installing openssl ---' mkdir -p /tmp/build with_backoff curl --fail -sSLo openssl.tar.gz "https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz" tar -xzvf openssl.tar.gz @@ -22,6 +23,7 @@ function main() { make -j2 && \ make install_sw DESTDIR=/tmp/build popd + echo '--- installed openssl ---' } diff --git a/test.sh b/test.sh index 7f5ccd4..553c4f9 100755 --- a/test.sh +++ b/test.sh @@ -10,6 +10,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) export $(grep -v '^#' $SCRIPT_DIR/.env | xargs) function test() { + echo '--- testing openssl ---' cp -R /tmp/build/* / mv /tmp/build /tmp/buffer # Check we didn't link dependencies to `/tmp/build/...` @@ -18,6 +19,7 @@ function test() { ldd /usr/local/kong/lib/libyaml.so mv /tmp/buffer /tmp/build + echo '--- tested openssl ---' } test