Files
wlan-cloud-ui/generate_config_js.sh
Sean Macfarlane 06cb3feac3 fixed jq
2020-08-03 14:32:56 -04:00

10 lines
179 B
Bash

#!/bin/sh -eu
if [ -z "${API:-}" ]; then
API_URL_JSON=undefined
else
API_URL_JSON=$(jq -n --arg api "$API" '$api')
fi
cat <<EOF
window.REACT_APP_API = $API_URL_JSON;
EOF