Skip to content

Commit 343859a

Browse files
committed
Fix
1 parent 35f3b17 commit 343859a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

juniper/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ GRAPHQL_PLAYGROUND_VER ?= $(strip \
3636

3737
graphiql:
3838
$(eval graphiql-react-ver := $(strip \
39-
$(shell curl -fL https://raw.githubusercontent.com/graphql/graphiql/refs/tags/graphiql%40$(GRAPHIQL_VER)/packages/graphiql/package.json \
39+
$(shell curl -fsL https://raw.githubusercontent.com/graphql/graphiql/refs/tags/graphiql%40$(GRAPHIQL_VER)/packages/graphiql/package.json \
4040
| grep -m1 '"@graphiql/react": "' | cut -d '"' -f4 | cut -d '^' -f2)))
4141
$(eval graphiql-toolkit-ver := $(strip \
42-
$(shell curl -fL https://raw.githubusercontent.com/graphql/graphiql/refs/tags/graphiql%40$(GRAPHIQL_VER)/packages/graphiql/package.json \
42+
$(shell curl -fsL https://raw.githubusercontent.com/graphql/graphiql/refs/tags/graphiql%40$(GRAPHIQL_VER)/packages/graphiql/package.json \
4343
| grep -m1 '"@graphiql/toolkit": "' | cut -d '"' -f4 | cut -d '^' -f2)))
44-
curl -fL -o src/http/graphiql.html \
44+
curl -fsL -o src/http/graphiql.html \
4545
https://raw.githubusercontent.com/graphql/graphiql/graphiql%40$(GRAPHIQL_VER)/examples/graphiql-cdn/index.html
4646
$(sed-i) 's|esm.sh/[email protected]|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
4747
src/http/graphiql.html

0 commit comments

Comments
 (0)