Skip to content

Commit b772564

Browse files
authored
Fix "use_default_shell_env = True" for NixOS (higherkindness#284)
Co-authored-by: Timothy Klim <[email protected]>
1 parent f24d0d6 commit b772564

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

rules/private/phases/phase_zinc_compile.bzl

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def phase_zinc_compile(ctx, g):
8989
executable = worker.files_to_run.executable,
9090
input_manifests = input_manifests,
9191
execution_requirements = _resolve_execution_reqs(ctx, {"no-sandbox": "1", "supports-workers": "1"}),
92+
use_default_shell_env = True,
9293
arguments = [args],
9394
)
9495

rules/private/phases/phase_zinc_depscheck.bzl

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def phase_zinc_depscheck(ctx, g):
4545
executable = deps_configuration.worker.files_to_run.executable,
4646
input_manifests = worker_input_manifests,
4747
execution_requirements = _resolve_execution_reqs(ctx, {"supports-workers": "1"}),
48+
use_default_shell_env = True,
4849
arguments = [deps_args],
4950
)
5051
deps_checks[name] = deps_check

0 commit comments

Comments
 (0)