xref: /aosp_15_r20/external/mesa3d/bin/ci/download_gl_schema.sh (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1#!/bin/sh
2
3# Helper script to download the schema GraphQL from Gitlab to enable IDEs to
4# assist the developer to edit gql files
5
6SOURCE_DIR=$(dirname "$(realpath "$0")")
7
8(
9    cd $SOURCE_DIR || exit 1
10    gql-cli https://gitlab.freedesktop.org/api/graphql --print-schema > schema.graphql
11)
12