summaryrefslogtreecommitdiff
path: root/bin/ci/download_gl_schema.sh
blob: 41858df4c123223ff6709926f0c5fa12b226a398 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# Helper script to download the schema GraphQL from Gitlab to enable IDEs to
# assist the developer to edit gql files

SOURCE_DIR=$(dirname "$(realpath "$0")")

(
    cd $SOURCE_DIR || exit 1
    gql-cli https://gitlab.freedesktop.org/api/graphql --print-schema > schema.graphql
)