aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2021-10-13 20:39:10 +0000
committerGlen Barber <gjb@FreeBSD.org>2021-10-13 20:39:51 +0000
commit083f6d0e5d58e9ad6bccc782859c8a28d82c9889 (patch)
tree5c569cf0edf2340f799b858df626e57a842373b7
parent9f03d2c00167c8047416e0048e3b7f89d73baf8e (diff)
downloadsrc-083f6d0e5d58e9ad6bccc782859c8a28d82c9889.tar.gz
src-083f6d0e5d58e9ad6bccc782859c8a28d82c9889.zip
release: use tab-delimited variables in AZURE_UPLOAD_CONF
Sponsored by: Rubicon Communications, LLC ("Netgate")
-rw-r--r--release/Makefile.azure2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/Makefile.azure b/release/Makefile.azure
index b8e7418f35f7..00eacf22301b 100644
--- a/release/Makefile.azure
+++ b/release/Makefile.azure
@@ -12,7 +12,7 @@ CLEANFILES+= ${AZURE_UPLOAD_TGTS}
.if defined(AZURE_UPLOAD_CONF) && !empty(AZURE_UPLOAD_CONF)
. for VAR in _STORAGE _ACCOUNT _RESOURCEGROUP _KEY _LOCATION
-AZURE${VAR}!= grep -E ^AZURE${VAR}= ${AZURE_UPLOAD_CONF} | awk '{print $$2}'
+AZURE${VAR}!= grep -E '^AZURE${VAR}' ${AZURE_UPLOAD_CONF} | awk -F ' ' '{print $$2}'
. endfor
.endif