Skip to content

Commit

Permalink
fix(gql): introspection curl path (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorillamoe authored Sep 11, 2024
1 parent ddf3781 commit 8adfa27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/kulala/graphql/init.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
local Config = require("kulala.config")
local Parser = require("kulala.parser")
local Parserutils = require("kulala.parser.utils")
local Cmd = require("kulala.cmd")
Expand All @@ -18,7 +19,7 @@ M.download_schema = function()
end
local filename = vim.fn.expand("%:t:r") .. ".graphql-schema.json"
local c = {
"curl",
Config.get().curl_path,
"-s",
"-o",
filename,
Expand Down

0 comments on commit 8adfa27

Please sign in to comment.