Skip to content

Commit

Permalink
fix the installer issue when vars not define
Browse files Browse the repository at this point in the history
Signed-off-by: ashutosh16 <[email protected]>
  • Loading branch information
ashutosh16 committed Oct 10, 2024
1 parent 183895c commit 54d3b91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ if [ -f $ext_file ]; then
fi

ext_vars="${EXTENSION_JS_VARS:-}"
if [ -n "${ext_vars}" ]; then
ext_vars=$(echo "$ext_vars" | jq -c '.')
fi
if [ -n "${ext_vars}" ]; then
ext_vars=$(echo "$ext_vars" | jq -c '.')
fi


download_extension
Expand Down

0 comments on commit 54d3b91

Please sign in to comment.