mirror of https://github.com/01-edu/public.git
5 years ago
committed by
xpetit
1 changed files with 11 additions and 1 deletions
@ -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…
Reference in new issue