From d898834037e6b4e6b353fb3d26c11f875f4b7652 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Mon, 5 Oct 2015 09:21:52 -0400 Subject: [PATCH] AWS: Log the distro when we don't recognize it Similar to #15070, we should log the distro if we're going to tell the user we can't match it (so the user can see if they have typoed it, and so it will hopefully be included to us in error reports) --- cluster/aws/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/aws/util.sh b/cluster/aws/util.sh index 213816a19c9..7588e2b3148 100644 --- a/cluster/aws/util.sh +++ b/cluster/aws/util.sh @@ -244,7 +244,7 @@ case "${KUBE_OS_DISTRIBUTION}" in detect-jessie-image ;; *) - echo "Please specify AWS_IMAGE directly (distro not recognized)" + echo "Please specify AWS_IMAGE directly (distro ${KUBE_OS_DISTRIBUTION} not recognized)" exit 2 ;; esac