Skip to content

Commit

Permalink
Fix configuration script
Browse files Browse the repository at this point in the history
  • Loading branch information
b-straub committed May 5, 2024
1 parent 8df07e5 commit 30127ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DexieNETCloudSample/Dexie/configure-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ npx dexie-cloud import dexie-cloud.json

URLS=$(jq -r '.profiles.https.applicationUrl' ../Properties/launchSettings.json)

IFS=';' read -ra ADDR <<< $URLS
for i in "${ADDR[@]}"; do
IFS='; ' read -ra URLA <<< $URLS
for i in "${URLA[@]}"; do
echo "Whitelisting origin: $i"
npx dexie-cloud whitelist $i
done

0 comments on commit 30127ca

Please sign in to comment.