From 9a96f777421b4f4aca67920e7e9ec6d93cfc8f1c Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Fri, 1 Sep 2023 07:33:42 -0700 Subject: [PATCH] Print go version and env when initializing repo This could be helpful to track down issues, but mostly pushing this to trigger a new CI run. --- go | 1 + scripts/full-initialize-repo.sh | 6 ++++++ 2 files changed, 7 insertions(+) create mode 160000 go diff --git a/go b/go new file mode 160000 index 0000000000..d51840c041 --- /dev/null +++ b/go @@ -0,0 +1 @@ +Subproject commit d51840c0413398ddcda2589ee527ec29700f33df diff --git a/scripts/full-initialize-repo.sh b/scripts/full-initialize-repo.sh index 51724ae110..65b14e412e 100755 --- a/scripts/full-initialize-repo.sh +++ b/scripts/full-initialize-repo.sh @@ -3,6 +3,12 @@ # This script generates and applies FIPS # patches to a Go tree. +echo "Host Go Version:" +go version + +echo "Host Go Env:" +go env + SCRIPT_DIR=$(readlink -f $(dirname $0)) GO_DIR=${SCRIPT_DIR}/../go