Skip to content

Commit b97753a

Browse files
committed
Fix remote Wattsi on certain versions of Bash
Closes #286.
1 parent 8edb2f6 commit b97753a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ function runWattsi {
771771
$SINGLE_PAGE_ONLY && query_params+=( single-page-only )
772772

773773
local query_string
774-
query_string="$(joinBy "\&" "${query_params[@]}")"
774+
query_string="$(joinBy "\&" "${query_params[@]-''}")"
775775
local curl_url="https://build.whatwg.org/wattsi?${query_string}"
776776

777777
CURL_ARGS=( "$curl_url" \

0 commit comments

Comments
 (0)