From 4a103c8cb5be7c2f8aba33749ac01922ca15b7d2 Mon Sep 17 00:00:00 2001 From: Alvin Huang Date: Mon, 15 Apr 2019 15:29:19 -0400 Subject: [PATCH] interpolate properly (#5665) --- website/scripts/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/scripts/deploy.sh b/website/scripts/deploy.sh index a393686c2..169641500 100755 --- a/website/scripts/deploy.sh +++ b/website/scripts/deploy.sh @@ -107,7 +107,7 @@ if [ -z "$NO_REDIRECTS" ] || [ ! test -f $REDIRECTS_FILE ]; then # Read fields IFS=" " read -ra parts <<<"$line" fields+=("${parts[@]}") - done < REDIRECTS_FILE + done < $REDIRECTS_FILE # Check we have pairs if [ $((${#fields[@]} % 2)) -ne 0 ]; then