Browse Source

Update exercise to make it work in dev env

content-update
4 years ago committed by xpetit
parent
commit
76b7fdcb60
  1. 12
      sh/tests/solutions/myfamily.sh

12
sh/tests/solutions/myfamily.sh

@ -1,3 +1,13 @@
#!/usr/bin/env bash
curl -s https://$DOMAIN/assets/superhero/all.json | jq ".[] | select( .id == $HERO_ID)" | grep relatives | cut -d'"' -f4
# Unofficial Bash Strict Mode
set -euo pipefail
IFS='
'
f=""
# --insecure flag to make it work with dev environment (self-signed certificate)
test "$DOMAIN" = "localhost" && f="--insecure"
curl $f --compressed --silent --show-error --max-time 10 https://$DOMAIN/assets/superhero/all.json |
jq ".[] | select(.id == $HERO_ID)" | grep relatives | cut -d'"' -f4

Loading…
Cancel
Save