We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b5a3c commit 85e4193Copy full SHA for 85e4193
fetchModuleSchemas.js
@@ -14,7 +14,15 @@ fs.mkdirSync(modulesDir)
14
15
for (const module of modules) {
16
if (module.tsp === "") continue
17
- const res = await fetch(module.tsp)
+ let url = undefined
18
+ if (module.tsp.includes("blue-build/modules")) {
19
+ url = module.tsp.replace("/main/", "/refs/heads/oneof-fix/")
20
+ } else {
21
+ url = module.tsp
22
+ }
23
+
24
+ console.log(url)
25
+ const res = await fetch(url)
26
let text = await res.text()
27
let last_line = ''
28
0 commit comments