From 942a1eccfbdadba57d82f078fc19ddd491b444b9 Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Mon, 29 Mar 2021 19:38:41 -0400 Subject: [PATCH] update download script fixes a but in the download link script. --- scripts/download_link_validator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download_link_validator.sh b/scripts/download_link_validator.sh index 10a6d69a..d9d15051 100644 --- a/scripts/download_link_validator.sh +++ b/scripts/download_link_validator.sh @@ -1,6 +1,6 @@ ## this is a simple script to validate a download url actaully exists -if [ ! -z "${DOWNLOAD_URL}"]; then +if [ ! -z "${DOWNLOAD_URL}" ]; then if curl --output /dev/null --silent --head --fail ${DOWNLOAD_URL}; then echo -e "link is valid. setting download link to ${DOWNLOAD_URL}" DOWNLOAD_LINK=${DOWNLOAD_URL}