build_runner: provide valid global cache to the build runner (#1009)

This commit is contained in:
Lee Cannon
2023-02-17 12:26:03 -08:00
committed by GitHub
parent c3f58538e8
commit 8bd5358748
7 changed files with 32 additions and 15 deletions

View File

@@ -125,7 +125,12 @@
"default": "null"
},
"global_cache_path": {
"description": "Path to a directroy that will be used as zig's cache. null is equivalent to `${KnownFloders.Cache}/zls`",
"description": "Path to a directory that will be used as zig's cache. null is equivalent to `${KnownFloders.Cache}/zls`",
"type": "string",
"default": "null"
},
"build_runner_global_cache_path": {
"description": "Path to a directory that will be used as the global cache path when executing a projects build.zig. null is equivalent to the path shown by `zig env`",
"type": "string",
"default": "null"
}